lol

Python tests: fix use of is_virtualenv

Too many tests set it.

authored by

Frederik Rietdijk and committed by
Frederik Rietdijk
98bcf5d8 d5782486

+3 -3
+3 -3
pkgs/development/interpreters/python/tests.nix
··· 39 39 interpreter = env.interpreter; 40 40 is_venv = "False"; 41 41 is_nixenv = "True"; 42 - is_virtualenv = "True"; 42 + is_virtualenv = "False"; 43 43 }; 44 44 } // lib.optionalAttrs (python.isPy3k && (!python.isPyPy)) rec { 45 45 # Venv built using plain Python ··· 52 52 interpreter = "${env}/bin/${python.executable}"; 53 53 is_venv = "True"; 54 54 is_nixenv = "False"; 55 - is_virtualenv = "True"; 55 + is_virtualenv = "False"; 56 56 }; 57 57 58 58 } // lib.optionalAttrs (python.pythonAtLeast "3.8") { ··· 66 66 interpreter = "${env}/bin/${pythonEnv.executable}"; 67 67 is_venv = "True"; 68 68 is_nixenv = "True"; 69 - is_virtualenv = "True"; 69 + is_virtualenv = "False"; 70 70 }; 71 71 }; 72 72