summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-09-26 10:18:17 +0200
committerGitHub <noreply@github.com>2021-09-26 10:18:17 +0200
commit17857083b09176c9c067a8ee6ed8f04d06385a59 (patch)
treeffb10516f9669680d3691dadc136d8dfe2f205ba /var
parentdbbc2879e5a2ac28868ad11154646081ad17c81e (diff)
downloadspack-17857083b09176c9c067a8ee6ed8f04d06385a59.tar.gz
spack-17857083b09176c9c067a8ee6ed8f04d06385a59.tar.bz2
spack-17857083b09176c9c067a8ee6ed8f04d06385a59.tar.xz
spack-17857083b09176c9c067a8ee6ed8f04d06385a59.zip
py-datalad-container: add new package (#26222)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-datalad-container/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-datalad-container/package.py b/var/spack/repos/builtin/packages/py-datalad-container/package.py
new file mode 100644
index 0000000000..121be06253
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-datalad-container/package.py
@@ -0,0 +1,19 @@
+# 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 PyDataladContainer(PythonPackage):
+ """DataLad extension package for working with containerized environments"""
+
+ homepage = "https://github.com/datalad/datalad-container/"
+ pypi = "datalad_container/datalad_container-1.1.5.tar.gz"
+
+ version('1.1.5', sha256='f6099a0124ddb2f021531d5020a583eca3cd9243e4e609b0f58e3f72e779b601')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-datalad@0.13:', type='run')
+ depends_on('py-requests@1.2:', type='run')