lol

python.pkgs.pytest.setupHook: fix cache name, fixes #40273

The cache is not named `.pytest-cache` but `.pytest_cache`.

+2 -2
+2 -2
pkgs/development/python-modules/pytest/default.nix
··· 27 runHook postCheck 28 ''; 29 30 - # Remove .pytest-cache when using py.test in a Nix build 31 setupHook = writeText "pytest-hook" '' 32 postFixupHooks+=( 33 - 'find $out -name .pytest-cache -type d -exec rm -rf {} +' 34 ) 35 ''; 36
··· 27 runHook postCheck 28 ''; 29 30 + # Remove .pytest_cache when using py.test in a Nix build 31 setupHook = writeText "pytest-hook" '' 32 postFixupHooks+=( 33 + 'find $out -name .pytest_cache -type d -exec rm -rf {} +' 34 ) 35 ''; 36