python310Packages.mwtypes: put nose in nativeCheckInputs

This commit is contained in:
Gaetan Lepage 2023-07-23 12:47:16 +02:00
parent 2b6c79aaa4
commit 932c3af522

View file

@ -2,8 +2,8 @@
, buildPythonPackage
, fetchPypi
, jsonable
, pytestCheckHook
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
@ -17,9 +17,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ jsonable ];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
nativeCheckInputs = [
nose
pytestCheckHook
];
disabledTests = [
"test_normalize_path_bad_extension"