Skip to content

Commit f09635e

Browse files
authored
python312Packages.mwxml: 0.3.5 -> 0.3.6 (#388938)
2 parents c64873e + 9f3487c commit f09635e

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

pkgs/development/python-modules/mwxml/default.nix

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,27 @@
33
stdenv,
44
buildPythonPackage,
55
fetchPypi,
6+
7+
# build-system
8+
setuptools,
9+
10+
# dependencies
611
jsonschema,
712
mwcli,
813
mwtypes,
14+
15+
# tests
916
pytestCheckHook,
10-
setuptools,
1117
}:
1218

1319
buildPythonPackage rec {
1420
pname = "mwxml";
15-
version = "0.3.5";
21+
version = "0.3.6";
1622
pyproject = true;
1723

1824
src = fetchPypi {
1925
inherit pname version;
20-
hash = "sha256-K/5c6BfX2Jo/jcKhCa3hCQ8PtWzqSFZ8xFqe1R/CSEs=";
26+
hash = "sha256-WlMYHTAhUq0D7FE/8Yaongx+H8xQx4MwRSoIcsqmOTU=";
2127
};
2228

2329
build-system = [ setuptools ];
@@ -28,10 +34,10 @@ buildPythonPackage rec {
2834
mwtypes
2935
];
3036

31-
nativeCheckInputs = [ pytestCheckHook ];
32-
3337
pythonImportsCheck = [ "mwxml" ];
3438

39+
nativeCheckInputs = [ pytestCheckHook ];
40+
3541
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
3642
# AttributeError: Can't get local object 'map.<locals>.process_path'
3743
"test_complex_error_handler"

0 commit comments

Comments
 (0)