diff options
author | David Elsing <david.elsing@posteo.net> | 2024-03-23 22:04:41 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-06-18 11:26:56 +0200 |
commit | b452dd635f616baf85bb4568fe71f6c973ad9a36 (patch) | |
tree | 45eae5bcc955deb59db358fb8115c6bb877756a7 | |
parent | e6f873c9363bb48e1a3cbbd03086e77448bc9f22 (diff) | |
download | guix-b452dd635f616baf85bb4568fe71f6c973ad9a36.tar.gz guix-b452dd635f616baf85bb4568fe71f6c973ad9a36.zip |
gnu: Add python-typing-extensions-4.10.
* gnu/packages/python-build.scm (python-typing-extensions-4.10): New variable.
-rw-r--r-- | gnu/packages/python-build.scm | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 76e29b6c90..71f9e5c7da 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2020, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2022 Garek Dyszel <garekdyszel@disroot.org> ;;; Copyright © 2022 Greg Hogan <code@greghogan.com> - +;;; Copyright © 2024 David Elsing <david.elsing@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -252,6 +252,18 @@ Included are implementations of: @end enumerate\n") (license license:psfl))) +(define-public python-typing-extensions-4.10 + (package + (inherit python-typing-extensions) + (version "4.10.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "typing_extensions" version)) + (sha256 + (base32 + "1jxkj4pni8pdyrn79sq441lsp40xzw363n0qvfc6zfcgkv4dgaxh")))))) + ;;; ;;; Python builder packages. |