nixpkgs/pkgs/development/python-modules/nilearn/default.nix

32 lines
708 B
Nix
Raw Normal View History

2017-09-15 21:48:53 +01:00
{ stdenv, buildPythonPackage, fetchPypi, nose, nibabel, numpy, scikitlearn
, scipy, matplotlib }:
buildPythonPackage rec {
pname = "nilearn";
2018-06-21 06:37:17 +01:00
version = "0.4.2";
name = pname + "-" + version;
2017-09-15 21:48:53 +01:00
src = fetchPypi {
inherit pname version;
2018-06-21 06:37:17 +01:00
sha256 = "5049363eb6da2e7c35589477dfc79bf69929ca66de2d7ed2e9dc07acf78636f4";
2017-09-15 21:48:53 +01:00
};
checkPhase = "nosetests --exclude with_expand_user nilearn/tests";
buildInputs = [ nose ];
propagatedBuildInputs = [
matplotlib
nibabel
numpy
scikitlearn
scipy
];
meta = with stdenv.lib; {
homepage = http://nilearn.github.io;
description = "A module for statistical learning on neuroimaging data";
license = licenses.bsd3;
};
}