python3Packages.nox: Remove optional dependencies from testing

This reduces closure size and none of the optional dependencies seem to be critical for testing.
This commit is contained in:
adisbladis
2024-12-10 06:28:38 +00:00
parent 940f800164
commit d2db437c6f
@@ -50,7 +50,7 @@ buildPythonPackage rec {
uv = [ uv ];
};
nativeCheckInputs = [ pytestCheckHook ] ++ lib.flatten (builtins.attrValues optional-dependencies);
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$(mktemp -d)