diff options
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 5483283ea6..881fc6364c 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -678,6 +678,7 @@ def contents() -> str: (inherit python-3.10) (name "python") (version "3.11.11") + (replacement python-3.11/fixed) (source (origin (method url-fetch) (uri (string-append "https://www.python.org/ftp/python/" @@ -1080,6 +1081,16 @@ def contents() -> str: (variable "PYTHONTZPATH") (files (list "share/zoneinfo"))))))) +(define-public python-3.11/fixed + (package/inherit python-3.11 + (version "3.11.14") + (source (origin + (inherit (package-source python-3.11)) + (uri (string-append "https://www.python.org/ftp/python/" version + "/Python-" version ".tar.xz")) + (sha256 (base32 + "0y4v42qm66nvizjxbnixh59283a54nki51jmbrgwkhc8bkndhgld")))))) + (define-public python-3.12 (package (name "python-next") |