mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: Add python-typeguard-4.
* gnu/packages/python-xyz.scm (python-typeguard-4): New variable. Change-Id: Ic5728766e8171dc31a82056f55a8c00680db5870
This commit is contained in:
parent
1e0b80b9e1
commit
6c34d33cde
1 changed files with 18 additions and 0 deletions
|
@ -25318,6 +25318,24 @@ (define-public python-typeguard
|
|||
with PEP 484 argument (and return) type annotations.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-typeguard-4
|
||||
(package
|
||||
(inherit python-typeguard)
|
||||
(name "python-typeguard")
|
||||
;; This is the latest version we can use, because python-typeguard >=
|
||||
;; 4.0.1 requires python-typing-extensions >= 4.7.0.
|
||||
(version "4.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "typeguard" version))
|
||||
(sha256
|
||||
(base32 "11yrc7pv2fajmicwiyc92sb5gphlw3zbxww8f2prrsh6rgdv6kqr"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
'())
|
||||
(propagated-inputs (list python-typing-extensions))))
|
||||
|
||||
(define-public bpython
|
||||
(package
|
||||
(name "bpython")
|
||||
|
|
Loading…
Reference in a new issue