tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.mwtypes: put nose in nativeCheckInputs
Gaetan Lepage
2 years ago
932c3af5
2b6c79aa
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
mwtypes
default.nix
+5
-4
pkgs/development/python-modules/mwtypes/default.nix
···
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
, jsonable
5
5
-
, pytestCheckHook
6
5
, nose
6
6
+
, pytestCheckHook
7
7
}:
8
8
9
9
buildPythonPackage rec {
···
17
17
18
18
propagatedBuildInputs = [ jsonable ];
19
19
20
20
-
nativeCheckInputs = [ pytestCheckHook ];
21
21
-
22
22
-
checkInputs = [ nose ];
20
20
+
nativeCheckInputs = [
21
21
+
nose
22
22
+
pytestCheckHook
23
23
+
];
23
24
24
25
disabledTests = [
25
26
"test_normalize_path_bad_extension"