mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
pythonPackages.nipype: enable tests
This commit is contained in:
parent
db0fa06fce
commit
ee1896d63d
1 changed files with 15 additions and 3 deletions
|
@ -21,8 +21,12 @@
|
|||
, simplejson
|
||||
, traits
|
||||
, xvfbwrapper
|
||||
, pytestcov
|
||||
, codecov
|
||||
# other dependencies
|
||||
, which
|
||||
, bash
|
||||
, glibcLocales
|
||||
}:
|
||||
|
||||
assert !isPy3k -> configparser != null;
|
||||
|
@ -39,9 +43,11 @@ buildPythonPackage rec {
|
|||
# see https://github.com/nipy/nipype/issues/2240
|
||||
patches = [ ./prov-version.patch ];
|
||||
|
||||
doCheck = false; # fails with TypeError: None is not callable
|
||||
checkInputs = [ which ];
|
||||
buildInputs = [ pytest mock ]; # required in installPhase
|
||||
postPatch = ''
|
||||
substituteInPlace nipype/interfaces/base/tests/test_core.py \
|
||||
--replace "/usr/bin/env bash" "${bash}/bin/bash"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
dateutil
|
||||
|
@ -62,6 +68,12 @@ buildPythonPackage rec {
|
|||
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";
|
||||
|
|
Loading…
Reference in a new issue