diff options
author | Dani <44979434+d-beltran@users.noreply.github.com> | 2024-02-13 17:03:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 10:03:42 -0600 |
commit | bd44cedd0de623efde132ad1d8fa964c13309cc3 (patch) | |
tree | 771e6af9c0c971cc48d18071a63b2e2eaf667260 | |
parent | 316a9a5d11d3ede8bb145753a9825b4096339e68 (diff) | |
download | spack-bd44cedd0de623efde132ad1d8fa964c13309cc3.tar.gz spack-bd44cedd0de623efde132ad1d8fa964c13309cc3.tar.bz2 spack-bd44cedd0de623efde132ad1d8fa964c13309cc3.tar.xz spack-bd44cedd0de623efde132ad1d8fa964c13309cc3.zip |
new builtin package: py-biobb-io (#42451)
* new builtin package: py-biobb-io
* Update var/spack/repos/builtin/packages/py-biobb-io/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-io/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-biobb-io/package.py b/var/spack/repos/builtin/packages/py-biobb-io/package.py new file mode 100644 index 0000000000..528c8af9e2 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-biobb-io/package.py @@ -0,0 +1,23 @@ +# 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 PyBiobbIo(PythonPackage): + """Biobb_io is the Biobb module collection to fetch data to be + consumed by the rest of the Biobb building blocks""" + + pypi = "biobb_io/biobb_io-4.1.0.tar.gz" + + maintainers("d-beltran") + + # Versions + version("4.1.0", sha256="074ea97a3682731e13d559b7f91b04e4a3f0f02ee798503089e4af79a730bf72") + + # Dependencies + depends_on("py-setuptools", type="build") + depends_on("py-biobb-common@4.1.0", type=("build", "run")) + depends_on("python@3.8:", type=("build", "run")) |