python3Packages.mwxml: 0.3.6 -> 0.3.8 (#509316)

This commit is contained in:
kirillrdy
2026-04-12 20:47:06 +00:00
committed by GitHub
2 changed files with 31 additions and 17 deletions
@@ -14,16 +14,17 @@
# tests
pytestCheckHook,
pythonAtLeast,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "mwxml";
version = "0.3.6";
version = "0.3.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-WlMYHTAhUq0D7FE/8Yaongx+H8xQx4MwRSoIcsqmOTU=";
inherit (finalAttrs) pname version;
hash = "sha256-yiIyqX6pMem7JPhbVKSRBYwjwHRXY3LnESRq+scGFuA=";
};
build-system = [ setuptools ];
@@ -38,10 +39,15 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# AttributeError: Can't get local object 'map.<locals>.process_path'
"test_complex_error_handler"
];
disabledTests =
lib.optionals (pythonAtLeast "3.14") [
# _pickle.PicklingError: Can't pickle local object <function map.<locals>.process_path at 0x7ffff580f480>
"test_complex_error_handler"
]
++ 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";
@@ -50,4 +56,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})
@@ -3,28 +3,36 @@
stdenv,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
# build-system
setuptools,
# tests
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "para";
version = "0.0.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "para" ];
# AttributeError: Can't get local object 'test_output_queue_size.<locals>.get_the_a'
doCheck = !stdenv.hostPlatform.isDarwin;
nativeCheckInputs = [ pytestCheckHook ];
doCheck =
# AttributeError: Can't get local object 'test_output_queue_size.<locals>.get_the_a'
(!stdenv.hostPlatform.isDarwin)
# _pickle.PicklingError: Can't pickle local object <function test_map.<locals>.get_the_a at 0x7ffff5689fe0>
&& (pythonOlder "3.14");
meta = {
description = "Set utilities that ake advantage of python's 'multiprocessing' module to distribute CPU-intensive tasks";
@@ -32,4 +40,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})