about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/nilearn/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/nilearn/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/nilearn/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/nilearn/default.nix b/nixpkgs/pkgs/development/python-modules/nilearn/default.nix
new file mode 100644
index 000000000000..f697e34e9995
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/nilearn/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, buildPythonPackage, fetchPypi, nose, nibabel, numpy, scikitlearn
+, scipy, matplotlib }:
+
+buildPythonPackage rec {
+  pname = "nilearn";
+  version = "0.5.0";
+  name = pname + "-" + version;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "085cd4f7c19a47ed9d951c853223190b9fb0dbddeaeedf8f86dfa9c53d6492ca";
+  };
+
+  # disable some failing tests
+  checkPhase = ''
+    nosetests nilearn/tests \
+    -e test_cache_mixin_with_expand_user -e test_clean_confounds -e test_detrend \
+    -e test_clean_detrending -e test_high_variance_confounds
+  '';
+
+  checkInputs = [ 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;
+  };
+}