summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-parmed/package.py
blob: 7d3f1aa23b213aa604041a78cef95191168d0136 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class PyParmed(PythonPackage):
    """ParmEd is a general tool for aiding in investigations of
    biomolecular systems using popular molecular simulation
    packages, like Amber, CHARMM, and OpenMM written in
    Python."""

    homepage = "https://parmed.github.io/ParmEd/html/index.html"
    pypi = "ParmEd/ParmEd-3.4.3.tar.gz"

    license("MIT")

    version("3.4.3", sha256="90afb155e3ffe69230a002922b28968464126d4450059f0bd97ceca679c6627c")

    depends_on("python@2.7:", type=("build", "run"))
    depends_on("py-setuptools", type="build")