python312: 3.12.8 -> 3.12.9

https://docs.python.org/release/3.12.9/whatsnew/changelog.html
This commit is contained in:
Martin Weinelt
2025-02-04 23:56:43 +01:00
parent 0690e42a7c
commit 5628a3fb23
2 changed files with 4 additions and 4 deletions
@@ -252,7 +252,7 @@ in with passthru; stdenv.mkDerivation (finalAttrs: {
# (since it will do a futile invocation of gcc (!) to find
# libuuid, slowing down program startup a lot).
noldconfigPatch
] ++ optionals (!isPy313) [
] ++ optionals (!isPy312 && !isPy313) [
# https://www.cve.org/CVERecord?id=CVE-2025-0938
./CVE-2025-0938.patch
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isFreeBSD) [
@@ -297,7 +297,7 @@ in with passthru; stdenv.mkDerivation (finalAttrs: {
] ++ optionals (pythonOlder "3.12") [
# https://github.com/python/cpython/issues/90656
./loongarch-support.patch
] ++ optionals (isPy312 || isPy314) [
] ++ optionals isPy314 [
./3.12/CVE-2024-12254.patch
] ++ optionals (pythonAtLeast "3.11" && pythonOlder "3.13") [
# backport fix for https://github.com/python/cpython/issues/95855
@@ -20,10 +20,10 @@
sourceVersion = {
major = "3";
minor = "12";
patch = "8";
patch = "9";
suffix = "";
};
hash = "sha256-yQkVe7JewRTlhpEkzCqcSk1MHpV8pP9VPx7caSEBFU4=";
hash = "sha256-ciCDXZ+Qs3wAbphCqN/0WAqspDGGdPlHMCuNKPP4ERI=";
};
};