wrapPythonPrograms: do not propagate disabling user site-packages to child-processes
The `PYTHONNOUSERSITE` was exported to prevent impurities during runtime. The downside of exporting environment variables is that they always propagate all the way down the process tree, unless they are explicitly unset at some point. Using the `-s` argument applies it only to the process executed in the wrapper. That way, subprocesses are free to do impure things.
parent
a0aeb238
Please register or sign in to comment