summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-neurolab/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-neurolab/package.py b/var/spack/repos/builtin/packages/py-neurolab/package.py
new file mode 100644
index 0000000000..f58bc2116a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-neurolab/package.py
@@ -0,0 +1,18 @@
+# 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 PyNeurolab(PythonPackage):
+ """Simple and powerfull neural network library for python"""
+
+ homepage = "http://neurolab.googlecode.com/"
+ pypi = "neurolab/neurolab-0.3.5.tar.gz"
+
+ version('0.3.5', sha256='96ec311988383c63664f3325668f27c30561cf4349e3bc5420665c042a3b9191')
+
+ depends_on('py-numpy', type=('build', 'run'))
+ # depends_on('py-setuptools', type='build')