Commit d2db437c authored by adisbladis's avatar adisbladis
Browse files

python3Packages.nox: Remove optional dependencies from testing

This reduces closure size and none of the optional dependencies seem to be critical for testing.
parent 940f8001
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ buildPythonPackage rec {
    uv = [ uv ];
  };

  nativeCheckInputs = [ pytestCheckHook ] ++ lib.flatten (builtins.attrValues optional-dependencies);
  nativeCheckInputs = [ pytestCheckHook ];

  preCheck = ''
    export HOME=$(mktemp -d)