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

33 lines
766 B
Nix
Raw Normal View History

2020-11-17 16:37:22 -05:00
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, matplotlib
, nibabel, numpy, pandas, scikitlearn, scipy, joblib, requests }:
2017-09-15 16:48:53 -04:00
buildPythonPackage rec {
pname = "nilearn";
2020-11-17 16:37:22 -05:00
version = "0.7.0";
2017-09-15 16:48:53 -04:00
src = fetchPypi {
inherit pname version;
2020-11-17 16:37:22 -05:00
sha256 = "1rhpy6na7hkhc211ri14zghvmb2fxkh995wi09pkc68klf1dzjg7";
2017-09-15 16:48:53 -04:00
};
2020-11-17 16:37:22 -05:00
checkInputs = [ pytestCheckHook ];
disabledTests = [ "test_clean_confounds" ]; # https://github.com/nilearn/nilearn/issues/2608
2017-09-15 16:48:53 -04:00
propagatedBuildInputs = [
2020-01-27 13:52:02 -05:00
joblib
2017-09-15 16:48:53 -04:00
matplotlib
nibabel
numpy
2020-01-27 13:52:02 -05:00
pandas
2020-11-17 16:37:22 -05:00
requests
2017-09-15 16:48:53 -04:00
scikitlearn
scipy
];
2020-11-17 16:37:22 -05:00
meta = with lib; {
homepage = "https://nilearn.github.io";
2017-09-15 16:48:53 -04:00
description = "A module for statistical learning on neuroimaging data";
license = licenses.bsd3;
};
}