File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
pkgs/development/python-modules/mwxml Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 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
1319buildPythonPackage 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"
You can’t perform that action at this time.
0 commit comments