lol

Python: disable user site-packages in setup hook

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.

+3
+3
pkgs/development/interpreters/python/setup-hook.sh
··· 19 19 export DETERMINISTIC_BUILD=1; 20 20 # Determinism: We fix the hashes of str, bytes and datetime objects. 21 21 export PYTHONHASHSEED=0; 22 + # Determinism. Whenever Python is included, it should not check user site-packages. 23 + # This option is only relevant when the sandbox is disabled. 24 + export PYTHONNOUSERSITE=1;