Merge pull request #93295 from bcdarwin/unbreak-pydicom

python3Packages.pydicom: unbreak package
This commit is contained in:
worldofpeace 2020-07-16 16:56:15 -04:00 committed by GitHub
commit 7bbcb280d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
, isPy27
, pytest
, pytestrunner
, pytestCheckHook
, numpy
, pillow
}:
@ -19,7 +20,10 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ numpy pillow ];
checkInputs = [ pytest pytestrunner ];
checkInputs = [ pytest pytestrunner pytestCheckHook ];
disabledTests = [ "test_invalid_bit_depth_raises" ];
# harmless failure; see https://github.com/pydicom/pydicom/issues/1119
meta = with stdenv.lib; {
homepage = "https://pydicom.github.io";