summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-09-27 23:39:30 +0200
committerGitHub <noreply@github.com>2021-09-27 23:39:30 +0200
commit9b7a8f69fb6abde5aca6a51fa2327a3496234ed1 (patch)
tree6effd5cad28a3a67b5391f26348159c3f4d520e7
parentacc8673e1aeb2586e2ceb0dc868262b70dead023 (diff)
downloadspack-9b7a8f69fb6abde5aca6a51fa2327a3496234ed1.tar.gz
spack-9b7a8f69fb6abde5aca6a51fa2327a3496234ed1.tar.bz2
spack-9b7a8f69fb6abde5aca6a51fa2327a3496234ed1.tar.xz
spack-9b7a8f69fb6abde5aca6a51fa2327a3496234ed1.zip
py-python-picard: add new package (#26268)
-rw-r--r--var/spack/repos/builtin/packages/py-python-picard/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-picard/package.py b/var/spack/repos/builtin/packages/py-python-picard/package.py
new file mode 100644
index 0000000000..66c0cbdc66
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-python-picard/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 PyPythonPicard(PythonPackage):
+ """Preconditoned ICA for Real Data."""
+
+ homepage = "https://pierreablin.github.io/picard/"
+ pypi = "python-picard/python-picard-0.6.tar.gz"
+
+ version('0.6', sha256='dad377c9a50f9850f85841eba0ffb58ad557885ca93364bb73153f33210b52e2')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy@1.8:', type=('build', 'run'))
+ depends_on('py-matplotlib@1.3:', type=('build', 'run'))
+ depends_on('py-scipy@0.16:', type=('build', 'run'))
+ depends_on('py-numexpr@2.0:', type=('build', 'run'))
+ depends_on('py-scikit-learn@0.23:', type=('build', 'run'))