py-biobb-structure-checking: new package (#42580)

* new builtin package: py-biobb-structure-checking

* Update var/spack/repos/builtin/packages/py-biobb-structure-checking/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

* dependencies are also build dependencies

---------

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Dani 2024-02-13 17:05:37 +01:00 committed by GitHub
parent bd44cedd0d
commit ce777e3c89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,26 @@
# 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 PyBiobbStructureChecking(PythonPackage):
"""Biobb_structure_checking provides a series of functions
to check the quality of a 3D structure intended to facilitate
the setup of a molecular dynamics simulation of protein or nucleic acids systems"""
pypi = "biobb_structure_checking/biobb_structure_checking-3.14.4.tar.gz"
maintainers("d-beltran")
# Versions
version("3.13.4", sha256="d819819d13c7ad219411b70b043555dcd65d5535f696a1121db562646931f445")
# Dependencies
depends_on("py-setuptools", type="build")
depends_on("python@3.8:", type=("build", "run"))
depends_on("py-psutil", type=("build", "run"))
depends_on("py-numpy", type=("build", "run"))
depends_on("py-biopython@1.79:", type=("build", "run"))