python3Packages.xmlsec: skip failing test on x86_64-darwin

This commit is contained in:
Gaetan Lepage
2026-03-25 20:36:19 +00:00
parent 87972648f1
commit f16c4dad24
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
@@ -70,6 +71,11 @@ buildPythonPackage (finalAttrs: {
"tests/test_doc_examples.py"
];
disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
# AssertionError: memory leak detected
"test_reinitialize_module"
];
pythonImportsCheck = [ "xmlsec" ];
meta = {