summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-09-26 09:50:01 +0200
committerGitHub <noreply@github.com>2021-09-26 09:50:01 +0200
commitd6270269104a85f3040046c50427392b4b2e9e30 (patch)
tree643f87b34da559450b35b526d0865669960848ab /var
parent3b323d6c90931c013a5f750d807fe60979327ab8 (diff)
downloadspack-d6270269104a85f3040046c50427392b4b2e9e30.tar.gz
spack-d6270269104a85f3040046c50427392b4b2e9e30.tar.bz2
spack-d6270269104a85f3040046c50427392b4b2e9e30.tar.xz
spack-d6270269104a85f3040046c50427392b4b2e9e30.zip
py-datalad-webapp: add new package (#26226)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-datalad-webapp/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-datalad-webapp/package.py b/var/spack/repos/builtin/packages/py-datalad-webapp/package.py
new file mode 100644
index 0000000000..79cd61a3a4
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-datalad-webapp/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 PyDataladWebapp(PythonPackage):
+ """DataLad extension for exposing commands via a web request API"""
+
+ homepage = "https://github.com/datalad/datalad-webapp"
+ pypi = "datalad_webapp/datalad_webapp-0.3.tar.gz"
+
+ version('0.3', sha256='7bbb2ce58a7e0e6d1a7a2f33d7e50fe7e73cd764380e70fdc2d9f651c3d0e312')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-datalad@0.12.5:', type=('build', 'run'))
+ depends_on('py-flask@1.0:', type=('build', 'run'))
+ depends_on('py-flask-restful', type=('build', 'run'))
+ depends_on('py-pytest-cov', type=('build', 'run'))