summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2017-03-29 21:21:13 +0200
committerAdam J. Stewart <ajstewart426@gmail.com>2017-03-29 14:21:13 -0500
commit8e99c97d21602957aa6072dc0077fd0f68b379ec (patch)
tree114344af416f6981741555dd343845a056568b9d /var
parent8d87c01f6218c90469cb28dbbb79e154a6fcfaa9 (diff)
downloadspack-8e99c97d21602957aa6072dc0077fd0f68b379ec.tar.gz
spack-8e99c97d21602957aa6072dc0077fd0f68b379ec.tar.bz2
spack-8e99c97d21602957aa6072dc0077fd0f68b379ec.tar.xz
spack-8e99c97d21602957aa6072dc0077fd0f68b379ec.zip
Add package py-pynn (#3622)
* add package py-pynn * fix docstring * fix dependency mess * add python dependency
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pynn/package.py50
1 files changed, 50 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pynn/package.py b/var/spack/repos/builtin/packages/py-pynn/package.py
new file mode 100644
index 0000000000..2e7aae6ec9
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pynn/package.py
@@ -0,0 +1,50 @@
+##############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the LICENSE file for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class PyPynn(PythonPackage):
+ """A Python package for simulator-independent specification of neuronal
+ network models
+ """
+
+ homepage = "http://neuralensemble.org/PyNN/"
+ url = "https://pypi.io/packages/source/P/PyNN/PyNN-0.8.3.tar.gz"
+
+ version('0.8.3', '28c63f898093806a57198e9271ed7b82')
+ version('0.8beta', git='https://github.com/NeuralEnsemble/PyNN.git',
+ commit='ffb0cb1661f2b0f2778db8f71865978fe7a7a6a4')
+ version('0.8.1', '7fb165ed5af35a115cb9c60991645ae6')
+ version('0.7.5', 'd8280544e4c9b34b40fd372b16342841')
+
+ depends_on('python@2.6:2.8,3.3:')
+ depends_on('py-lazyarray@0.2.9:', type=('build', 'run'))
+ depends_on('py-neo@:0.3', type=('build', 'run'))
+ depends_on('py-numpy@:1.5', type=('build', 'run'))
+ depends_on('py-jinja2@:2.6', type=('build', 'run'))
+ depends_on('py-quantities@:0.10', type=('build', 'run'))
+ depends_on('py-lazyarray@:0.2.9', type=('build', 'run'))
+ depends_on('py-neo@:0.3', type=('build', 'run'))
+ depends_on('py-numpy@1.5:', type=('build', 'run'))