diff options
-rw-r--r-- | var/spack/repos/builtin/packages/py-biobb-model/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-biobb-model/package.py b/var/spack/repos/builtin/packages/py-biobb-model/package.py new file mode 100644 index 0000000000..d017da758c --- /dev/null +++ b/var/spack/repos/builtin/packages/py-biobb-model/package.py @@ -0,0 +1,25 @@ +# Copyright 2013-2024 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 PyBiobbModel(PythonPackage): + """Biobb_model is the Biobb module collection to check and model 3d structures, + create mutations or reconstruct missing atoms""" + + pypi = "biobb_model/biobb_model-4.1.0.tar.gz" + + maintainers("d-beltran") + + # Versions + version("4.1.0", sha256="616898c26c8196fcf109c97fc03103d1cf5c9cf3eda22bdef5420393cc1906c6") + + # Dependencies + depends_on("py-setuptools", type="build") + depends_on("python@3.8:", type=("build", "run")) + depends_on("py-biobb-common@4.1.0", type=("build", "run")) + depends_on("py-biobb-structure-checking@3.13.4:", type=("build", "run")) + depends_on("py-xmltodict", type=("build", "run")) |