1{ stdenv, buildPythonPackage, fetchPypi, isPy3k
2, scipy, numpy, matplotlib, tables, pyaml, urllib3, rpy2, mpi4py }:
3
4buildPythonPackage rec {
5 pname = "NeuroTools";
6 version = "0.3.1";
7 disabled = isPy3k;
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "0ly6qa87l3afhksab06vp1iimlbm1kdnsw98mxcnpzz9q07l4nd4";
12 };
13
14 # Tests are not automatically run
15 # Many tests fail (using py.test), and some need R
16 doCheck = false;
17
18 propagatedBuildInputs = [
19 scipy
20 numpy
21 matplotlib
22 tables
23 pyaml
24 urllib3
25 rpy2
26 mpi4py
27 ];
28
29 meta = with stdenv.lib; {
30 description = "Collection of tools to support analysis of neural activity";
31 homepage = https://pypi.python.org/pypi/NeuroTools;
32 license = licenses.gpl2;
33 maintainers = with maintainers; [ nico202 ];
34 };
35}