diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/py-biobb-common/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/py-biobb-common/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-biobb-common/package.py b/var/spack/repos/builtin/packages/py-biobb-common/package.py new file mode 100644 index 0000000000..64887f8d97 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-biobb-common/package.py @@ -0,0 +1,24 @@ +# 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 PyBiobbCommon(PythonPackage): + """Biobb_common is the base package required to use the biobb packages""" + + pypi = "biobb_common/biobb_common-4.1.0.tar.gz" + + maintainers("d-beltran") + + # Versions + version("4.1.0", sha256="97637f359a3bb8ad79aca72b6c26f73fe2424845dc7f43005643971046e9d117") + + # Dependencies + depends_on("py-setuptools", type="build") + depends_on("python@3.8:", type=("build", "run")) + depends_on("py-pyyaml", type=("build", "run")) + depends_on("py-requests", type=("build", "run")) + depends_on("py-biopython", type=("build", "run")) |