1{ lib
2, buildPythonPackage
3, fetchPypi
4, numpy
5, matplotlib
6, scipy
7, isPy27
8}:
9
10buildPythonPackage rec {
11 pname = "neuronpy";
12 version = "0.1.6";
13 disabled = !isPy27;
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "1clhc2b5fy2l8nfrji4dagmj9419nj6kam090yqxhq5c28sngk25";
18 };
19
20 propagatedBuildInputs = [ numpy matplotlib scipy ];
21
22 #No tests included
23 doCheck = false;
24
25 meta = with lib; {
26 description = "Interfaces and utilities for the NEURON simulator and analysis of neural data";
27 maintainers = [ maintainers.nico202 ];
28 license = licenses.mit;
29 };
30
31}