diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-06-01 15:41:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 08:41:02 -0500 |
commit | 8fe2be0010e45f6b2ba339f5a7fe350bb7efed42 (patch) | |
tree | 80391a2c4f2070abafae6c808345590f459b2fd3 | |
parent | 4c3d58ad83df06797c37469e77f55681f9f71563 (diff) | |
download | spack-8fe2be0010e45f6b2ba339f5a7fe350bb7efed42.tar.gz spack-8fe2be0010e45f6b2ba339f5a7fe350bb7efed42.tar.bz2 spack-8fe2be0010e45f6b2ba339f5a7fe350bb7efed42.tar.xz spack-8fe2be0010e45f6b2ba339f5a7fe350bb7efed42.zip |
py-nipype: add new package (#24045)
-rw-r--r-- | var/spack/repos/builtin/packages/py-nipype/package.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-nipype/package.py b/var/spack/repos/builtin/packages/py-nipype/package.py new file mode 100644 index 0000000000..a53b0e2dc3 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-nipype/package.py @@ -0,0 +1,34 @@ +# 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 PyNipype(PythonPackage): + """Neuroimaging in Python: Pipelines and Interfaces.""" + + homepage = "http://nipy.org/nipype" + pypi = "nipype/nipype-1.6.0.tar.gz" + + version('1.6.0', sha256='bc56ce63f74c9a9a23c6edeaf77631377e8ad2bea928c898cc89527a47f101cf') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + + depends_on('py-click@6.6.0:', type=('build', 'run')) + depends_on('py-networkx@2.0:', type=('build', 'run')) + depends_on('py-nibabel@2.1.0:', type=('build', 'run')) + depends_on('py-numpy@1.13:', type=('build', 'run'), when='^python@:3.6.999') + depends_on('py-numpy@1.15.3:', type=('build', 'run'), when='^python@3.7:') + depends_on('py-packaging', type=('build', 'run')) + depends_on('py-prov@1.5.2:', type=('build', 'run')) + depends_on('py-pydot@1.2.3:', type=('build', 'run')) + depends_on('py-python-dateutil@2.2:', type=('build', 'run')) + depends_on('py-rdflib@5.0.0:', type=('build', 'run')) + depends_on('py-scipy@0.14:', type=('build', 'run')) + depends_on('py-simplejson@3.8.0:', type=('build', 'run')) + depends_on('py-traits@4.6:4.99,5.1:', type=('build', 'run')) + depends_on('py-filelock@3.0.0:', type=('build', 'run')) + depends_on('py-etelemetry@0.2.0:', type=('build', 'run')) |