summary refs log tree commit diff
path: root/pkgs/development/python-modules/neuronpy/default.nix
blob: 2d388dfa4c27a2d5c26ff0f8c5129332372a45cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, matplotlib
, scipy
, isPy27
}:

buildPythonPackage rec {
  pname = "neuronpy";
  version = "0.1.6";
  disabled = !isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1clhc2b5fy2l8nfrji4dagmj9419nj6kam090yqxhq5c28sngk25";
  };

  propagatedBuildInputs = [ numpy matplotlib scipy ];

  #No tests included
  doCheck = false;

  meta = with lib; {
    description = "Interfaces and utilities for the NEURON simulator and analysis of neural data";
    maintainers = [ maintainers.nico202 ];
    license = licenses.mit;
  };

}