python310Packages.jsonable: put nose in nativeCheckInputs

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

View file

@ -1,8 +1,8 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
@ -16,9 +16,10 @@ buildPythonPackage rec {
hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA=";
};
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
nativeCheckInputs = [
nose
pytestCheckHook
];
pythonImportsCheck = [ "jsonable" ];