python38: 3.8.12 -> 3.8.13
https://www.python.org/downloads/release/python-3813/
This commit is contained in:
parent
3619ffaeb6
commit
d56ccde39a
1 changed files with 9 additions and 11 deletions
|
@ -120,15 +120,6 @@ with pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
sources = {
|
sources = {
|
||||||
python38 = {
|
|
||||||
sourceVersion = {
|
|
||||||
major = "3";
|
|
||||||
minor = "8";
|
|
||||||
patch = "12";
|
|
||||||
suffix = "";
|
|
||||||
};
|
|
||||||
sha256 = "1si8hw2xpagh4iji89zdx69p3dv5mjqwwbx2x2sl6lrp41jaglxi";
|
|
||||||
};
|
|
||||||
python39 = {
|
python39 = {
|
||||||
sourceVersion = {
|
sourceVersion = {
|
||||||
major = "3";
|
major = "3";
|
||||||
|
@ -177,11 +168,18 @@ in {
|
||||||
inherit passthruFun;
|
inherit passthruFun;
|
||||||
};
|
};
|
||||||
|
|
||||||
python38 = callPackage ./cpython ({
|
python38 = callPackage ./cpython {
|
||||||
self = python38;
|
self = python38;
|
||||||
|
sourceVersion = {
|
||||||
|
major = "3";
|
||||||
|
minor = "8";
|
||||||
|
patch = "13";
|
||||||
|
suffix = "";
|
||||||
|
};
|
||||||
|
sha256 = "sha256-bzCQdwEgQKo5/o8MYduMD6HEUTZ2MpnTdcnldW8Jz1c=";
|
||||||
inherit (darwin) configd;
|
inherit (darwin) configd;
|
||||||
inherit passthruFun;
|
inherit passthruFun;
|
||||||
} // sources.python38);
|
};
|
||||||
|
|
||||||
python39 = callPackage ./cpython ({
|
python39 = callPackage ./cpython ({
|
||||||
self = python39;
|
self = python39;
|
||||||
|
|
Loading…
Reference in a new issue