python310Packages.para: put nose in nativeCheckInputs

This commit is contained in:
Gaetan Lepage 2023-07-21 15:33:42 +02:00
parent 76a9d7a7d5
commit 8b14338b1f

View file

@ -1,8 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
@ -14,9 +14,10 @@ buildPythonPackage rec {
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
};
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
nativeCheckInputs = [
nose
pytestCheckHook
];
pythonImportsCheck = [ "para" ];