Files
nixpkgs/pkgs/development/python-modules/nipype/default.nix
T

88 lines
1.5 KiB
Nix
Raw Normal View History

2018-01-16 23:29:42 +10:00
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
# python dependencies
, click
, configparser ? null
, dateutil
, funcsigs
, future
2018-07-26 12:39:54 +02:00
, futures
2018-01-16 23:29:42 +10:00
, mock
, networkx
, nibabel
, numpy
, packaging
, prov
, psutil
, pydot
, pytest
, pytest_xdist
, pytest-forked
2018-01-16 23:29:42 +10:00
, scipy
, simplejson
, traits
, xvfbwrapper
2018-03-31 20:43:32 +02:00
, pytestcov
, codecov
2018-01-16 23:29:42 +10:00
# other dependencies
, which
2018-03-31 20:43:32 +02:00
, bash
, glibcLocales
2018-01-16 23:29:42 +10:00
}:
assert !isPy3k -> configparser != null;
buildPythonPackage rec {
pname = "nipype";
2018-08-13 09:27:50 +02:00
version = "1.1.2";
2018-01-16 23:29:42 +10:00
src = fetchPypi {
inherit pname version;
2018-08-13 09:27:50 +02:00
sha256 = "f2fe29bf863cb643bd5c8d2bdeaaf488308c293c9fb9913bc7a9504dc3bf8db6";
2018-01-16 23:29:42 +10:00
};
2018-03-28 01:08:12 +02:00
# see https://github.com/nipy/nipype/issues/2240
patches = [ ./prov-version.patch ];
2018-03-31 20:43:32 +02:00
postPatch = ''
substituteInPlace nipype/interfaces/base/tests/test_core.py \
--replace "/usr/bin/env bash" "${bash}/bin/bash"
'';
2018-01-16 23:29:42 +10:00
propagatedBuildInputs = [
click
dateutil
funcsigs
future
networkx
nibabel
numpy
packaging
prov
psutil
pydot
scipy
simplejson
traits
xvfbwrapper
] ++ stdenv.lib.optional (!isPy3k) [
configparser
futures
2018-01-16 23:29:42 +10:00
];
checkInputs = [ pytest mock pytestcov pytest_xdist pytest-forked codecov which glibcLocales ];
2018-03-31 20:43:32 +02:00
checkPhase = ''
LC_ALL="en_US.UTF-8" py.test -v --doctest-modules nipype
'';
2018-01-16 23:29:42 +10:00
meta = with stdenv.lib; {
homepage = http://nipy.org/nipype/;
description = "Neuroimaging in Python: Pipelines and Interfaces";
license = licenses.bsd3;
maintainers = with maintainers; [ ashgillman ];
};
}