tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.mwxml: put nose in nativeCheckInputs
Gaetan Lepage
2 years ago
2b6c79aa
8b14338b
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
mwxml
default.nix
+5
-4
pkgs/development/python-modules/mwxml/default.nix
reviewed
···
4
4
, jsonschema
5
5
, mwcli
6
6
, mwtypes
7
7
-
, pytestCheckHook
8
7
, nose
8
8
+
, pytestCheckHook
9
9
}:
10
10
11
11
buildPythonPackage rec {
···
23
23
mwtypes
24
24
];
25
25
26
26
-
nativeCheckInputs = [ pytestCheckHook ];
27
27
-
28
28
-
checkInputs = [ nose ];
26
26
+
nativeCheckInputs = [
27
27
+
nose
28
28
+
pytestCheckHook
29
29
+
];
29
30
30
31
disabledTests = [
31
32
"test_page_with_discussion"