nixpkgs/pkgs/development/python-modules/nilearn/default.nix
Samuel Leathers f8f62d5216 nilearn: 0.2.5 -> 0.3.1
fixes #29178
2017-09-16 00:25:11 +01:00

32 lines
695 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, nose, nibabel, numpy, scikitlearn
, scipy, matplotlib }:
buildPythonPackage rec {
pname = "nilearn";
version = "0.3.1";
name = "nilearn-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0kkarh5cdcd2czs0bf0s1g51qas84mfxfq0dzd7k5h5l0qr4zy06";
};
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;
};
}