guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: python-ecdsa: Update to 0.17.0.


From: guix-commits
Subject: 02/04: gnu: python-ecdsa: Update to 0.17.0.
Date: Tue, 18 Jan 2022 08:20:31 -0500 (EST)

lbraun pushed a commit to branch master
in repository guix.

commit 241a9c51a3adcc79bace0603100a89f1bba4872c
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Tue Jan 18 13:57:01 2022 +0100

    gnu: python-ecdsa: Update to 0.17.0.
    
    Required by python-esptool.
    
    * gnu/packages/python-crypto.scm (python-ecdsa): Update to 0.17.0.
    [arguments]: Ignore failing test.
---
 gnu/packages/python-crypto.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 89c0cf0e0c..6d377c7c3f 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -227,19 +227,23 @@ Python interface around SSH networking concepts.")
 (define-public python-ecdsa
   (package
     (name "python-ecdsa")
-    (version "0.14.1")
+    (version "0.17.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "ecdsa" version))
        (sha256
-        (base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4"))))
+        (base32 "1ak8xa2r660d85abrlffp0bqvwdadg9ga4066g856hcy8fxh1xdr"))))
     (build-system python-build-system)
     (arguments
      '(#:phases
        (modify-phases %standard-phases
          (replace 'check
-           (lambda _ (invoke "pytest"))))))
+           (lambda _ (invoke
+                      "pytest"
+                      "-vv"
+                      "-k"
+                      "not test_multithreading_with_interrupts"))))))
     (propagated-inputs
      (list python-six))
     (native-inputs



reply via email to

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