Revert "python3Packages.xmltodict: disable incompatible expat tests"

This reverts commit 0451c289d3.
Now it's not needed anymore.
This commit is contained in:
Vladimír Čunát 2022-03-05 08:19:03 +01:00
parent 48a007306b
commit c18eab5a31
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, coverage
, pytestCheckHook
, nose
}:
buildPythonPackage rec {
@ -14,13 +14,11 @@ buildPythonPackage rec {
sha256 = "50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21";
};
checkInputs = [ coverage pytestCheckHook ];
checkInputs = [ coverage nose ];
disabledTests = [
# incompatibilities with security fixes: https://github.com/martinblech/xmltodict/issues/289
"test_namespace_collapse"
"test_namespace_support"
];
checkPhase = ''
nosetests
'';
meta = {
description = "Makes working with XML feel like you are working with JSON";