Revert "python3Packages.xmltodict: disable incompatible expat tests"
This reverts commit 0451c289d3
.
Now it's not needed anymore.
This commit is contained in:
parent
48a007306b
commit
c18eab5a31
1 changed files with 5 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, coverage
|
, coverage
|
||||||
, pytestCheckHook
|
, nose
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -14,13 +14,11 @@ buildPythonPackage rec {
|
||||||
sha256 = "50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21";
|
sha256 = "50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ coverage pytestCheckHook ];
|
checkInputs = [ coverage nose ];
|
||||||
|
|
||||||
disabledTests = [
|
checkPhase = ''
|
||||||
# incompatibilities with security fixes: https://github.com/martinblech/xmltodict/issues/289
|
nosetests
|
||||||
"test_namespace_collapse"
|
'';
|
||||||
"test_namespace_support"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Makes working with XML feel like you are working with JSON";
|
description = "Makes working with XML feel like you are working with JSON";
|
||||||
|
|
Loading…
Reference in a new issue