pythonPackages.nipype: 1.1.9 -> 1.2.0

This commit is contained in:
Jonathan Ringer 2019-08-05 19:09:01 -07:00 committed by Frederik Rietdijk
parent 2087bc4bc2
commit f40a1ef0cc

View File

@ -16,6 +16,7 @@
, packaging
, prov
, psutil
, pybids
, pydot
, pytest
, pytest_xdist
@ -44,11 +45,11 @@ in
buildPythonPackage rec {
pname = "nipype";
version = "1.1.9";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "f80096ec6cfd7cffc05764bba1749e424877140ef1373193f076bdd843f19016";
sha256 = "09azgfmb0992c3xqmi7n93pz95i4v37vc9kqmjh8c9jjxjzszdd5";
};
postPatch = ''
@ -79,6 +80,7 @@ buildPythonPackage rec {
];
checkInputs = [
pybids
codecov
glibcLocales
mock
@ -89,13 +91,11 @@ buildPythonPackage rec {
which
];
# ignore tests which incorrect fail to detect xvfb
checkPhase = ''
LC_ALL="en_US.UTF-8" pytest -v --doctest-modules nipype
LC_ALL="en_US.UTF-8" pytest -v nipype -k 'not display'
'';
# See: https://github.com/nipy/nipype/issues/2839
doCheck = false;
meta = with stdenv.lib; {
homepage = https://nipy.org/nipype/;
description = "Neuroimaging in Python: Pipelines and Interfaces";