summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pyabel/package.py
diff options
context:
space:
mode:
authoreugeneswalker <38933153+eugeneswalker@users.noreply.github.com>2023-04-28 06:31:18 -0500
committerGitHub <noreply@github.com>2023-04-28 04:31:18 -0700
commit63869bba4759d02214f25645c4902e856b193bc7 (patch)
treed412b2b439e20a3d02e7bad8c2a42f257665f84f /var/spack/repos/builtin/packages/py-pyabel/package.py
parenteacf11e6cc66318ac3c504f78ade66f56a42ffbd (diff)
downloadspack-63869bba4759d02214f25645c4902e856b193bc7.tar.gz
spack-63869bba4759d02214f25645c4902e856b193bc7.tar.bz2
spack-63869bba4759d02214f25645c4902e856b193bc7.tar.xz
spack-63869bba4759d02214f25645c4902e856b193bc7.zip
new package: py-pyabel (#37264)
Diffstat (limited to 'var/spack/repos/builtin/packages/py-pyabel/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-pyabel/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyabel/package.py b/var/spack/repos/builtin/packages/py-pyabel/package.py
new file mode 100644
index 0000000000..a06ce33447
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pyabel/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2023 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 PyPyabel(PythonPackage):
+ """A Python package for forward and inverse Abel transforms."""
+
+ homepage = "https://github.com/PyAbel/PyAbel"
+ pypi = "PyAbel/PyAbel-0.9.0.tar.gz"
+
+ maintainers = ["valmar"]
+
+ version("0.9.0", sha256="4052143de9da19be13bb321fb0524090ffc8cdc56e0e990e5d6f557f18109f08")
+
+ depends_on("py-setuptools@44.0:", type="build")
+ depends_on("py-numpy@1.16:", type=("build", "run"))
+ depends_on("py-scipy@1.2:", type=("build", "run"))
+ depends_on("py-six@1.10.0:", type=("build", "run"))