python38: 3.8.12 -> 3.8.13

https://www.python.org/downloads/release/python-3813/
This commit is contained in:
Martin Weinelt 2022-03-16 21:12:25 +01:00 committed by Frederik Rietdijk
parent 3619ffaeb6
commit d56ccde39a

View file

@ -120,15 +120,6 @@ with pkgs;
};
sources = {
python38 = {
sourceVersion = {
major = "3";
minor = "8";
patch = "12";
suffix = "";
};
sha256 = "1si8hw2xpagh4iji89zdx69p3dv5mjqwwbx2x2sl6lrp41jaglxi";
};
python39 = {
sourceVersion = {
major = "3";
@ -177,11 +168,18 @@ in {
inherit passthruFun;
};
python38 = callPackage ./cpython ({
python38 = callPackage ./cpython {
self = python38;
sourceVersion = {
major = "3";
minor = "8";
patch = "13";
suffix = "";
};
sha256 = "sha256-bzCQdwEgQKo5/o8MYduMD6HEUTZ2MpnTdcnldW8Jz1c=";
inherit (darwin) configd;
inherit passthruFun;
} // sources.python38);
};
python39 = callPackage ./cpython ({
self = python39;