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
, buildPythonPackage
3
, fetchPypi
4
, jsonable
5
-
, pytestCheckHook
6
, nose
0
7
}:
8
9
buildPythonPackage rec {
···
17
18
propagatedBuildInputs = [ jsonable ];
19
20
-
nativeCheckInputs = [ pytestCheckHook ];
21
-
22
-
checkInputs = [ nose ];
0
23
24
disabledTests = [
25
"test_normalize_path_bad_extension"
···
2
, buildPythonPackage
3
, fetchPypi
4
, jsonable
0
5
, nose
6
+
, pytestCheckHook
7
}:
8
9
buildPythonPackage rec {
···
17
18
propagatedBuildInputs = [ jsonable ];
19
20
+
nativeCheckInputs = [
21
+
nose
22
+
pytestCheckHook
23
+
];
24
25
disabledTests = [
26
"test_normalize_path_bad_extension"