Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot]
2025-12-15 12:10:12 +00:00
committed by GitHub
203 changed files with 1004 additions and 675 deletions
@@ -828,12 +828,12 @@ stdenv.mkDerivation (finalAttrs: {
enableParallelBuilding = true;
meta = with lib; {
meta = {
homepage = "https://www.python.org";
changelog =
let
majorMinor = versions.majorMinor version;
dashedVersion = replaceStrings [ "." "a" "b" ] [ "-" "-alpha-" "-beta-" ] version;
majorMinor = lib.versions.majorMinor version;
dashedVersion = lib.replaceStrings [ "." "a" "b" ] [ "-" "-alpha-" "-beta-" ] version;
in
if sourceVersion.suffix == "" then
"https://docs.python.org/release/${version}/whatsnew/changelog.html"