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.7.1";
2017-09-15 21:48:53 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "8b1409a5e1f0f6d1a1f02555c2f11115a2364f45f1e57bcb5fb3c9ea11f346fa";
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;
};
}