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 { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytestCheckHook
, nose , nose
, pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -14,9 +14,10 @@ buildPythonPackage rec {
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc="; hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
}; };
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [
nose
checkInputs = [ nose ]; pytestCheckHook
];
pythonImportsCheck = [ "para" ]; pythonImportsCheck = [ "para" ];