summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-09-29 17:59:50 +0200
committerGitHub <noreply@github.com>2021-09-29 17:59:50 +0200
commit7cd3af5d52dd653df3ebb1b2c8122a0831af6001 (patch)
tree39f2730c0c292642f10441a0e2949e3e4f1eee51 /var
parent4a31f0fb0ff783757ebf795da2cb42552ac492dd (diff)
downloadspack-7cd3af5d52dd653df3ebb1b2c8122a0831af6001.tar.gz
spack-7cd3af5d52dd653df3ebb1b2c8122a0831af6001.tar.bz2
spack-7cd3af5d52dd653df3ebb1b2c8122a0831af6001.tar.xz
spack-7cd3af5d52dd653df3ebb1b2c8122a0831af6001.zip
py-mffpy: add new package (#26345)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-mffpy/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-mffpy/package.py b/var/spack/repos/builtin/packages/py-mffpy/package.py
new file mode 100644
index 0000000000..1d746e38ef
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-mffpy/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2021 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 import *
+
+
+class PyMffpy(PythonPackage):
+ """Reader and Writer for Philips' MFF file format."""
+
+ homepage = "https://github.com/BEL-Public/mffpy"
+ pypi = "mffpy/mffpy-0.6.3.tar.gz"
+
+ version('0.6.3', sha256='fceaf59f5fccb26b6e8a0363579d27e53db547493af353737a24983d95dc012d')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pytz@2019.2:', type=('build', 'run'))
+ depends_on('py-numpy@1.15.1:', type=('build', 'run'))
+ depends_on('py-deprecated@1.2.12:', type=('build', 'run'))