summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2022-12-19 20:25:22 +0100
committerGitHub <noreply@github.com>2022-12-19 13:25:22 -0600
commitf1b85bc653daa8143c3173d7e591f0ae1c36e75a (patch)
treeb652e6875c2965342a38e5e0fb4438fd7e7c5fe0 /var
parente1fab4dd51c37d68e4ad99922ca8c9d345f5c79d (diff)
downloadspack-f1b85bc653daa8143c3173d7e591f0ae1c36e75a.tar.gz
spack-f1b85bc653daa8143c3173d7e591f0ae1c36e75a.tar.bz2
spack-f1b85bc653daa8143c3173d7e591f0ae1c36e75a.tar.xz
spack-f1b85bc653daa8143c3173d7e591f0ae1c36e75a.zip
py-nipype: add 1.8.5 and py-looseversion: add new package (#34608)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-looseversion/package.py17
-rw-r--r--var/spack/repos/builtin/packages/py-nipype/package.py9
2 files changed, 25 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-looseversion/package.py b/var/spack/repos/builtin/packages/py-looseversion/package.py
new file mode 100644
index 0000000000..2efe2e6d71
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-looseversion/package.py
@@ -0,0 +1,17 @@
+# Copyright 2013-2022 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.package import *
+
+
+class PyLooseversion(PythonPackage):
+ """Version numbering for anarchists and software realists."""
+
+ homepage = "https://github.com/effigies/looseversion"
+ pypi = "looseversion/looseversion-1.0.2.tar.gz"
+
+ version("1.0.2", sha256="8b9f2e649eb81620c4527ba33ba87505eb69d4bb3f66523b34182a0450c294bc")
+
+ depends_on("py-setuptools@40.8:", type="build")
diff --git a/var/spack/repos/builtin/packages/py-nipype/package.py b/var/spack/repos/builtin/packages/py-nipype/package.py
index ef83105203..e82b666300 100644
--- a/var/spack/repos/builtin/packages/py-nipype/package.py
+++ b/var/spack/repos/builtin/packages/py-nipype/package.py
@@ -12,19 +12,24 @@ class PyNipype(PythonPackage):
homepage = "https://github.com/nipy/nipype"
pypi = "nipype/nipype-1.6.0.tar.gz"
+ version("1.8.5", sha256="e3842743fb660464dd29de73dcfc9ef66d273be10bcc64059ff21cd5ef1e9655")
version("1.7.0", sha256="e689fe2e5049598c9cd3708e8df1cac732fa1a88696f283e3bc0a70fecb8ab51")
version("1.6.1", sha256="8428cfc633d8e3b8c5650e241e9eedcf637b7969bcd40f3423334d4c6b0992b5")
version("1.6.0", sha256="bc56ce63f74c9a9a23c6edeaf77631377e8ad2bea928c898cc89527a47f101cf")
version("1.4.2", sha256="069dcbb0217f13af6ee5a7f1e58424b9061290a3e10d7027d73bf44e26f820db")
+ depends_on("python@3.7:", when="@1.8:", type=("build", "run"))
depends_on("python@3.6:", when="@1.5:", type=("build", "run"))
depends_on("python@3.5:", type=("build", "run"))
+ depends_on("py-setuptools@30.3:", when="@1.7.1:", type="build")
depends_on("py-setuptools", type="build")
+ # dependencies are listed in nipype/info.py
depends_on("py-click@6.6:", type=("build", "run"))
depends_on("py-networkx@2:", when="@1.6:", type=("build", "run"))
depends_on("py-networkx@1.9:", type=("build", "run"))
depends_on("py-nibabel@2.1:", type=("build", "run"))
+ depends_on("py-numpy@1.17:", when="@1.8:", type=("build", "run"))
depends_on("py-numpy@1.15.3:", when="^python@3.7:", type=("build", "run"))
depends_on("py-packaging", type=("build", "run"))
depends_on("py-prov@1.5.2:", type=("build", "run"))
@@ -34,7 +39,9 @@ class PyNipype(PythonPackage):
depends_on("py-rdflib@5:", when="@1.5:", type=("build", "run"))
depends_on("py-scipy@0.14:", type=("build", "run"))
depends_on("py-simplejson@3.8:", type=("build", "run"))
- depends_on("py-traits@4.6:4,5.1:", type=("build", "run"))
+ depends_on("py-traits@4.6:4,5.1:6.3", when="@1.8.4:", type=("build", "run"))
+ depends_on("py-traits@4.6:4,5.1:", when="@:1.8.3", type=("build", "run"))
depends_on("py-filelock@3:", type=("build", "run"))
depends_on("py-etelemetry@0.2:", when="@1.5:", type=("build", "run"))
depends_on("py-etelemetry", type=("build", "run"))
+ depends_on("py-looseversion", when="@1.8.1:", type=("build", "run"))