python312Packages.mwxml: disable failing test on darwin

This commit is contained in:
Gaetan Lepage
2025-03-01 22:52:48 +01:00
parent b55ef89c82
commit 0a2e4c1f55
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
jsonschema,
@@ -31,6 +32,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "mwxml" ];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# AttributeError: Can't get local object 'map.<locals>.process_path'
"test_complex_error_handler"
];
meta = {
description = "Set of utilities for processing MediaWiki XML dump data";
mainProgram = "mwxml";