summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-10-04 11:47:37 +0200
committerGitHub <noreply@github.com>2021-10-04 09:47:37 +0000
commit8bcbead42bb546d814195764fa4f4b4c42b14201 (patch)
treea85f8cadac871f28131559e2f4886114a0a2089e /var
parent9926799aeb6134473da964fdde30d8ba65530175 (diff)
downloadspack-8bcbead42bb546d814195764fa4f4b4c42b14201.tar.gz
spack-8bcbead42bb546d814195764fa4f4b4c42b14201.tar.bz2
spack-8bcbead42bb546d814195764fa4f4b4c42b14201.tar.xz
spack-8bcbead42bb546d814195764fa4f4b4c42b14201.zip
py-templateflow: add new package (#26458)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-templateflow/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-templateflow/package.py b/var/spack/repos/builtin/packages/py-templateflow/package.py
new file mode 100644
index 0000000000..deff2182e5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-templateflow/package.py
@@ -0,0 +1,23 @@
+# 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 PyTemplateflow(PythonPackage):
+ """A python client to query TemplateFlow via pyBIDS."""
+
+ homepage = "https://github.com/templateflow/python-client"
+ pypi = "templateflow/templateflow-0.7.1.tar.gz"
+
+ version('0.7.1', sha256='c6e8282d1ffbb5dca7bd704a12e02bd00021860b71a043c35716861910c7187f')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools@40.9:', type='build')
+ depends_on('py-setuptools-scm+toml@3.4:', type='build')
+ depends_on('py-wheel', type='build')
+ depends_on('py-pybids@0.12.1:', type=('build', 'run'))
+ depends_on('py-requests', type=('build', 'run'))
+ depends_on('py-tqdm', type=('build', 'run'))