diff options
author | Dani <44979434+d-beltran@users.noreply.github.com> | 2024-02-18 10:18:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-18 03:18:03 -0600 |
commit | cb73d71cf19f972283eee350bab84db4c60e1003 (patch) | |
tree | 46338cbc12eef367da286abe22bf9493739bb897 | |
parent | 5949fc2c88702cf4b912bb55bfecf65d43dda77a (diff) | |
download | spack-cb73d71cf19f972283eee350bab84db4c60e1003.tar.gz spack-cb73d71cf19f972283eee350bab84db4c60e1003.tar.bz2 spack-cb73d71cf19f972283eee350bab84db4c60e1003.tar.xz spack-cb73d71cf19f972283eee350bab84db4c60e1003.zip |
new builtin package: py-biobb-model (#42681)
* new builtin package: py-biobb-model
* Update var/spack/repos/builtin/packages/py-biobb-model/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
---------
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-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")) |