mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
python3Packages.pydicom: unbreak package by disabling a test failing due to a string matching issue in an assert
This commit is contained in:
parent
f4722ea0bc
commit
f2d85f0433
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue