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 { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook
, nose , nose
, pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -16,9 +16,10 @@ buildPythonPackage rec {
hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA="; hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA=";
}; };
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [
nose
checkInputs = [ nose ]; pytestCheckHook
];
pythonImportsCheck = [ "jsonable" ]; pythonImportsCheck = [ "jsonable" ];