guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/08: gnu: Add python-typeguard-4.


From: guix-commits
Subject: 04/08: gnu: Add python-typeguard-4.
Date: Wed, 17 Jan 2024 05:19:47 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit 6c34d33cde04a75ce4874ea037afcb20af4673be
Author: Troy Figiel <troy@troyfigiel.com>
AuthorDate: Thu Jan 11 21:54:56 2024 +0100

    gnu: Add python-typeguard-4.
    
    * gnu/packages/python-xyz.scm (python-typeguard-4): New variable.
    
    Change-Id: Ic5728766e8171dc31a82056f55a8c00680db5870
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e0d74bb4e2..aebbae1521 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25318,6 +25318,24 @@ based on the CPython 2.7 and 3.7 parsers.")
 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]