3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/nilearn/default.nix

33 lines
780 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, matplotlib
, nibabel, numpy, pandas, scikit-learn, scipy, joblib, requests }:
2017-09-15 21:48:53 +01:00
buildPythonPackage rec {
pname = "nilearn";
version = "0.8.0";
2017-09-15 21:48:53 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "f2d3dc81005f829f3a183efa6c90d698ea6818c06264d2e3f03e805c4340febb";
2017-09-15 21:48:53 +01:00
};
checkInputs = [ pytestCheckHook ];
disabledTests = [ "test_clean_confounds" ]; # https://github.com/nilearn/nilearn/issues/2608
2017-09-15 21:48:53 +01:00
propagatedBuildInputs = [
joblib
2017-09-15 21:48:53 +01:00
matplotlib
nibabel
numpy
pandas
requests
scikit-learn
2017-09-15 21:48:53 +01:00
scipy
];
meta = with lib; {
homepage = "https://nilearn.github.io";
2017-09-15 21:48:53 +01:00
description = "A module for statistical learning on neuroimaging data";
license = licenses.bsd3;
};
}