guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 1565c5821e272f77125c136e4e428b83629dcc19
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Tue Mar 3 21:34:53 2026 +0100

    gnu: python-pyu2f: Update to 0.1.5-0.064be5a.
    
    * gnu/packages/python-crypto.scm (python-pyu2f): Update to 0.1.5-0.064be5a.
    
    Change-Id: I63a7f743f1e128b1e969056db35c3557e2791b86
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-crypto.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 4a9b0a8128..c918f953d1 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1744,16 +1744,22 @@ can also encrypt and decrypt messages using RSA and 
ECDH.")
 (define-public python-pyu2f
   (package
     (name "python-pyu2f")
-    (version "0.1.5")
+    ;; Released version fails tests in Python 3.12.
+    ;; pyu2f is no longer being developed.
+    (properties '((commit . "064be5ab9f4282855a15c79ecb9f7eec37f3938c")
+                  (revision . "0")))
+    (version (git-version "0.1.5"
+                          (assoc-ref properties 'revision)
+                          (assoc-ref properties 'commit)))
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/google/pyu2f/";)
-             (commit (string-append "v" version))))
+             (commit (assoc-ref properties 'commit))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1jlpplw7hlrh8bgmp37g18panij0p7ism6r4d981my4dc73lbwik"))))
+        (base32 "1373q4vzn449p8vsclhrsa5jb3vx9x77g2hdvibim5qwa1d724b9"))))
     (build-system pyproject-build-system)
     (arguments
      (list

Reply via email to