diff options
-rw-r--r-- | var/spack/repos/builtin/packages/py-your/package.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-your/package.py b/var/spack/repos/builtin/packages/py-your/package.py new file mode 100644 index 0000000000..a0e90fc7bd --- /dev/null +++ b/var/spack/repos/builtin/packages/py-your/package.py @@ -0,0 +1,34 @@ +# 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 PyYour(PythonPackage): + """Python library to read and process pulsar data in several different formats""" + + homepage = "https://github.com/thepetabyteproject/your" + + # pypi tarball has requirements.txt missing + url = "https://github.com/thepetabyteproject/your/archive/refs/tags/0.6.7.tar.gz" + + maintainers("aweaver1fandm") + + license("GPL-3.0") + + version("0.6.7", sha256="f2124a630d413621cce067805feb6b9c21c5c8938f41188bd89684968478d814") + + depends_on("python@3.8:", type=("build", "run")) + depends_on("py-setuptools", type="build") + + depends_on("py-astropy@6.1.0:", type=("build", "run")) + depends_on("py-matplotlib@3.2.1:", type=("build", "run")) + depends_on("py-numpy@1.18.4:", type=("build", "run")) + depends_on("py-h5py@2.10:", type=("build", "run")) + depends_on("py-scikit-image@0.14.2:", type=("build", "run")) + depends_on("py-scipy@1.3:", type=("build", "run")) + depends_on("py-numba@0.48:", type=("build", "run")) + depends_on("py-pandas@1.0.3:", type=("build", "run")) + depends_on("py-rich@8:", type=("build", "run")) |