lol

python310Packages.para: put nose in nativeCheckInputs

+5 -4
+5 -4
pkgs/development/python-modules/para/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , pytestCheckHook 5 , nose 6 }: 7 8 buildPythonPackage rec { ··· 14 hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc="; 15 }; 16 17 - nativeCheckInputs = [ pytestCheckHook ]; 18 - 19 - checkInputs = [ nose ]; 20 21 pythonImportsCheck = [ "para" ]; 22
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , nose 5 + , pytestCheckHook 6 }: 7 8 buildPythonPackage rec { ··· 14 hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc="; 15 }; 16 17 + nativeCheckInputs = [ 18 + nose 19 + pytestCheckHook 20 + ]; 21 22 pythonImportsCheck = [ "para" ]; 23