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 , buildPythonPackage
, fetchPypi , fetchPypi
, jsonable , jsonable
, pytestCheckHook
, nose , nose
, pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -17,9 +17,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ jsonable ]; propagatedBuildInputs = [ jsonable ];
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [
nose
checkInputs = [ nose ]; pytestCheckHook
];
disabledTests = [ disabledTests = [
"test_normalize_path_bad_extension" "test_normalize_path_bad_extension"