summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-21 15:52:38 +0200
committerGitHub <noreply@github.com>2021-07-21 06:52:38 -0700
commit9237a9f2449d6f14390f8f5c5661d58444ba66b0 (patch)
tree9a54bfea2d5a21d5bdf6b2408d313aa54a468598 /var
parent7a458be3eb77891723dc8a5e803aee1870927947 (diff)
downloadspack-9237a9f2449d6f14390f8f5c5661d58444ba66b0.tar.gz
spack-9237a9f2449d6f14390f8f5c5661d58444ba66b0.tar.bz2
spack-9237a9f2449d6f14390f8f5c5661d58444ba66b0.tar.xz
spack-9237a9f2449d6f14390f8f5c5661d58444ba66b0.zip
py-python-xmp-toolkit: add new package (#25008)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-python-xmp-toolkit/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-xmp-toolkit/package.py b/var/spack/repos/builtin/packages/py-python-xmp-toolkit/package.py
new file mode 100644
index 0000000000..1c31bf028e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-python-xmp-toolkit/package.py
@@ -0,0 +1,20 @@
+# 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 PyPythonXmpToolkit(PythonPackage):
+ """Python XMP Toolkit for working with metadata."""
+
+ homepage = "https://github.com/python-xmp-toolkit/python-xmp-toolkit"
+ pypi = "python-xmp-toolkit/python-xmp-toolkit-2.0.1.tar.gz"
+
+ version('2.0.1', sha256='f8d912946ff9fd46ed5c7c355aa5d4ea193328b3f200909ef32d9a28a1419a38')
+
+ depends_on('python@2.6:2.7,3.3:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pytz', type=('build', 'run'))
+ depends_on('exempi@2.2.0:', type=('build', 'run'))