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