2018-01-16 13:29:42 +00:00
|
|
|
{ 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
|
2018-03-31 19:43:32 +01:00
|
|
|
, pytestcov
|
|
|
|
, codecov
|
2018-01-16 13:29:42 +00:00
|
|
|
# other dependencies
|
|
|
|
, which
|
2018-03-31 19:43:32 +01:00
|
|
|
, bash
|
|
|
|
, glibcLocales
|
2018-01-16 13:29:42 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert !isPy3k -> configparser != null;
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nipype";
|
2018-06-12 17:47:03 +01:00
|
|
|
version = "1.0.4";
|
2018-01-16 13:29:42 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:47:03 +01:00
|
|
|
sha256 = "4c3c1eb15fc016457525d1f7eb701d1bbe595eb48a036ae8dc2d21b843f9e525";
|
2018-01-16 13:29:42 +00:00
|
|
|
};
|
|
|
|
|
2018-03-28 00:08:12 +01:00
|
|
|
# see https://github.com/nipy/nipype/issues/2240
|
|
|
|
patches = [ ./prov-version.patch ];
|
|
|
|
|
2018-03-31 19:43:32 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace nipype/interfaces/base/tests/test_core.py \
|
|
|
|
--replace "/usr/bin/env bash" "${bash}/bin/bash"
|
|
|
|
'';
|
|
|
|
|
2018-01-16 13:29:42 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
|
|
|
dateutil
|
|
|
|
funcsigs
|
|
|
|
future
|
|
|
|
networkx
|
|
|
|
nibabel
|
|
|
|
numpy
|
|
|
|
packaging
|
|
|
|
prov
|
|
|
|
psutil
|
|
|
|
pydot
|
|
|
|
scipy
|
|
|
|
simplejson
|
|
|
|
traits
|
|
|
|
xvfbwrapper
|
|
|
|
] ++ stdenv.lib.optional (!isPy3k) [
|
|
|
|
configparser
|
|
|
|
];
|
|
|
|
|
2018-03-31 19:43:32 +01:00
|
|
|
checkInputs = [ pytest mock pytestcov codecov which glibcLocales ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
LC_ALL="en_US.UTF-8" py.test -v --doctest-modules nipype
|
|
|
|
'';
|
|
|
|
|
2018-01-16 13:29:42 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://nipy.org/nipype/;
|
|
|
|
description = "Neuroimaging in Python: Pipelines and Interfaces";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ ashgillman ];
|
|
|
|
};
|
|
|
|
}
|