Wrappers already included `PYTHONNOUSERSITE=1`, but now this env var is also set in the Python setup hook. This improves purity in case of non-sandboxes builds and nix-shell.
···1919export DETERMINISTIC_BUILD=1;
2020# Determinism: We fix the hashes of str, bytes and datetime objects.
2121export PYTHONHASHSEED=0;
2222+# Determinism. Whenever Python is included, it should not check user site-packages.
2323+# This option is only relevant when the sandbox is disabled.
2424+export PYTHONNOUSERSITE=1;