lol

nilearn: 0.2.5 -> 0.3.1

fixes #29178

authored by

Samuel Leathers and committed by
Jörg Thalheim
f8f62d52 dd170cd5

+32 -30
+31
pkgs/development/python-modules/nilearn/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, nose, nibabel, numpy, scikitlearn 2 + , scipy, matplotlib }: 3 + 4 + buildPythonPackage rec { 5 + pname = "nilearn"; 6 + version = "0.3.1"; 7 + name = "nilearn-${version}"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0kkarh5cdcd2czs0bf0s1g51qas84mfxfq0dzd7k5h5l0qr4zy06"; 12 + }; 13 + 14 + checkPhase = "nosetests --exclude with_expand_user nilearn/tests"; 15 + 16 + buildInputs = [ nose ]; 17 + 18 + propagatedBuildInputs = [ 19 + matplotlib 20 + nibabel 21 + numpy 22 + scikitlearn 23 + scipy 24 + ]; 25 + 26 + meta = with stdenv.lib; { 27 + homepage = http://nilearn.github.io; 28 + description = "A module for statistical learning on neuroimaging data"; 29 + license = licenses.bsd3; 30 + }; 31 + }
+1 -30
pkgs/top-level/python-packages.nix
··· 13190 13190 }; 13191 13191 }; 13192 13192 13193 - nilearn = buildPythonPackage rec { 13194 - version = "0.2.5"; 13195 - name = "nilearn-${version}"; 13196 - 13197 - # package seems to attempt Python 3 compatibility, but throws UnicodeDecodeError when building: 13198 - disabled = isPy3k; 13199 - 13200 - src = pkgs.fetchurl { 13201 - url = "mirror://pypi/n/nilearn/${name}.tar.gz"; 13202 - sha256 = "1lmkrzr5x2yp129v2fvckrbdzf2kpcivdg9cacl519l3mb0acdv9"; 13203 - }; 13204 - 13205 - checkPhase = "nosetests --exclude with_expand_user nilearn/tests"; 13206 - 13207 - buildInputs = with self; [ nose ]; 13208 - 13209 - propagatedBuildInputs = with self; [ 13210 - matplotlib 13211 - nibabel 13212 - numpy 13213 - scikitlearn 13214 - scipy 13215 - ]; 13216 - 13217 - meta = { 13218 - homepage = http://nilearn.github.io; 13219 - description = "A module for statistical learning on neuroimaging data"; 13220 - license = licenses.bsd3; 13221 - }; 13222 - }; 13193 + nilearn = callPackage ../development/python-modules/nilearn {}; 13223 13194 13224 13195 nipy = buildPythonPackage rec { 13225 13196 version = "0.4.0";