mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 09:53:17 +00:00
69 lines
1.1 KiB
Nix
69 lines
1.1 KiB
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, isPy3k
|
||
|
# python dependencies
|
||
|
, click
|
||
|
, configparser ? null
|
||
|
, dateutil
|
||
|
, funcsigs
|
||
|
, future
|
||
|
, mock
|
||
|
, networkx
|
||
|
, nibabel
|
||
|
, numpy
|
||
|
, packaging
|
||
|
, prov
|
||
|
, psutil
|
||
|
, pydot
|
||
|
, pytest
|
||
|
, scipy
|
||
|
, simplejson
|
||
|
, traits
|
||
|
, xvfbwrapper
|
||
|
# other dependencies
|
||
|
, which
|
||
|
}:
|
||
|
|
||
|
assert !isPy3k -> configparser != null;
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "nipype";
|
||
|
version = "0.14.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0airdrh93vwmbfkqxp5cqfzm0zzqcvjnvphv3zhg197y39xxpl1k";
|
||
|
};
|
||
|
|
||
|
doCheck = false; # fails with TypeError: None is not callable
|
||
|
checkInputs = [ which ];
|
||
|
buildInputs = [ pytest mock ]; # required in installPhase
|
||
|
propagatedBuildInputs = [
|
||
|
click
|
||
|
dateutil
|
||
|
funcsigs
|
||
|
future
|
||
|
networkx
|
||
|
nibabel
|
||
|
numpy
|
||
|
packaging
|
||
|
prov
|
||
|
psutil
|
||
|
pydot
|
||
|
scipy
|
||
|
simplejson
|
||
|
traits
|
||
|
xvfbwrapper
|
||
|
] ++ stdenv.lib.optional (!isPy3k) [
|
||
|
configparser
|
||
|
];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = http://nipy.org/nipype/;
|
||
|
description = "Neuroimaging in Python: Pipelines and Interfaces";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ ashgillman ];
|
||
|
};
|
||
|
}
|