Skip to content

Commit

Permalink
python3Packages.nox: Remove optional dependencies from testing
Browse files Browse the repository at this point in the history
This reduces closure size and none of the optional dependencies seem to be critical for testing.
  • Loading branch information
adisbladis committed Dec 10, 2024
1 parent 940f800 commit d2db437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/nox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ buildPythonPackage rec {
uv = [ uv ];
};

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

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

0 comments on commit d2db437

Please sign in to comment.