pythonPackages.nipype: 0.10.0 -> 0.14.0

This commit is contained in:
Ashley Gillman 2018-01-16 13:31:20 +10:00 committed by Frederik Rietdijk
parent 15138ba1f6
commit 1832571dc6
1 changed files with 24 additions and 16 deletions

View File

@ -11409,34 +11409,42 @@ in {
}; };
nipype = buildPythonPackage rec { nipype = buildPythonPackage rec {
version = "0.10.0"; version = "0.14.0";
name = "nipype-${version}"; name = "nipype-${version}";
# Uses python 2 print. Master seems to be Py3 compatible.
disabled = isPy3k;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "mirror://pypi/n/nipype/${name}.tar.gz"; url = "mirror://pypi/n/nipype/${name}.tar.gz";
sha256 = "7fb143cd4d05f18db1cb7f0b83dba13d3dcf55b4eb3d16df08c97033ccae507b"; sha256 = "0airdrh93vwmbfkqxp5cqfzm0zzqcvjnvphv3zhg197y39xxpl1k";
}; };
# Tests fail due to getcwd returning ENOENT??? doCheck = false; # fails with TypeError: None is not callable
doCheck = false; checkInputs = [ pkgs.which ];
buildInputs = with self; [ pytest mock ];
propagatedBuildInputs = with self; [ propagatedBuildInputs = with self; [
numpy click
dateutil dateutil
nose funcsigs
traits future
scipy networkx
nibabel nibabel
networkx numpy
]; packaging
prov
psutil
pydot
scipy
simplejson
traits
xvfbwrapper
] ++ stdenv.lib.optional (!isPy3k) [
configparser
];
meta = { meta = {
homepage = http://nipy.org/nipype/; homepage = http://nipy.org/nipype/;
description = "Neuroimaging in Python: Pipelines and Interfaces"; description = "Neuroimaging in Python: Pipelines and Interfaces";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ ashgillman ];
}; };
}; };