summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-10-08 15:39:45 +0200
committerGitHub <noreply@github.com>2021-10-08 13:39:45 +0000
commit32b35e1a78ae530e31cb9c742a8540e34ee38fba (patch)
tree2ee40c35a97d5521522af97bcf00d531a44a87d4 /var
parent7f2611a960d7072c6fe07ab28697cd93f246eeeb (diff)
downloadspack-32b35e1a78ae530e31cb9c742a8540e34ee38fba.tar.gz
spack-32b35e1a78ae530e31cb9c742a8540e34ee38fba.tar.bz2
spack-32b35e1a78ae530e31cb9c742a8540e34ee38fba.tar.xz
spack-32b35e1a78ae530e31cb9c742a8540e34ee38fba.zip
py-neurora: add new package (#26479)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-neurora/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-neurora/package.py b/var/spack/repos/builtin/packages/py-neurora/package.py
new file mode 100644
index 0000000000..79ece62087
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-neurora/package.py
@@ -0,0 +1,25 @@
+# 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 PyNeurora(PythonPackage):
+ """A Python Toolbox for Multimodal Neural Data Representation Analysis."""
+
+ homepage = "https://github.com/ZitongLu1996/NeuroRA"
+ pypi = "neurora/neurora-1.1.5.16.tar.gz"
+
+ version('1.1.5.16', sha256='5ae296a5baf658b67e9754a172f5fb321c2077007455f93db6bb2aaeb3e23cd7')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-scipy@1.6.2:', type=('build', 'run'))
+ depends_on('py-mne', type=('build', 'run'))
+ depends_on('py-nibabel', type=('build', 'run'))
+ depends_on('py-matplotlib', type=('build', 'run'))
+ depends_on('py-nilearn', type=('build', 'run'))
+ depends_on('py-scikit-learn', type=('build', 'run'))
+ depends_on('py-scikit-image', type=('build', 'run'))