Merge pull request #303057 from mweinelt/python-3.12.3_3.11.9

python312: 3.12.2 -> 3.12.3; python311: 3.11.8 -> 3.11.9

Changed files
+10 -6
pkgs
development
interpreters
+4 -4
pkgs/development/interpreters/python/default.nix
···
sourceVersion = {
major = "3";
minor = "11";
-
patch = "8";
+
patch = "9";
suffix = "";
};
-
hash = "sha256-ngYAjIkBkkOVvB2jA+rFZ6cprgErqhgqs5Jp9lA4O7M=";
+
hash = "sha256-mx6JZSP8UQaREmyGRAbZNgo9Hphqy9pZzaV7Wr2kW4c=";
};
};
···
sourceVersion = {
major = "3";
minor = "12";
-
patch = "2";
+
patch = "3";
suffix = "";
};
-
hash = "sha256-vigRLayBPSBTVFwUvxOhZAGiGHfxpp626l2ExKDz2HA=";
+
hash = "sha256-Vr/vH9/BIhzmcg5DpmHj60F4XdkUzplpjYx4lq9L2qE=";
inherit (darwin) configd;
inherit passthruFun;
};
+6 -2
pkgs/development/interpreters/python/tests.nix
···
is_nixenv = "False";
is_virtualenv = "False";
};
-
} // lib.optionalAttrs (!python.isPyPy) {
+
} // lib.optionalAttrs (!python.isPyPy && !stdenv.isDarwin) {
# Use virtualenv with symlinks from a Nix env.
+
# Fails on darwin with
+
# virtualenv: error: argument dest: the destination . is not write-able at /nix/store
nixenv-virtualenv-links = rec {
env = runCommand "${python.name}-virtualenv-links" {} ''
${pythonVirtualEnv.interpreter} -m virtualenv --system-site-packages --symlinks --no-seed $out
···
is_nixenv = "True";
is_virtualenv = "True";
};
-
} // lib.optionalAttrs (!python.isPyPy) {
+
} // lib.optionalAttrs (!python.isPyPy && !stdenv.isDarwin) {
# Use virtualenv with copies from a Nix env.
+
# Fails on darwin with
+
# virtualenv: error: argument dest: the destination . is not write-able at /nix/store
nixenv-virtualenv-copies = rec {
env = runCommand "${python.name}-virtualenv-copies" {} ''
${pythonVirtualEnv.interpreter} -m virtualenv --system-site-packages --copies --no-seed $out