mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-05 18:29:28 +01:00
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.
This commit is contained in:
parent
80db7ab65b
commit
241a9c51a3
1 changed files with 7 additions and 3 deletions
|
@ -227,19 +227,23 @@ Python interface around SSH networking concepts.")
|
||||||
(define-public python-ecdsa
|
(define-public python-ecdsa
|
||||||
(package
|
(package
|
||||||
(name "python-ecdsa")
|
(name "python-ecdsa")
|
||||||
(version "0.14.1")
|
(version "0.17.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "ecdsa" version))
|
(uri (pypi-uri "ecdsa" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4"))))
|
(base32 "1ak8xa2r660d85abrlffp0bqvwdadg9ga4066g856hcy8fxh1xdr"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _ (invoke "pytest"))))))
|
(lambda _ (invoke
|
||||||
|
"pytest"
|
||||||
|
"-vv"
|
||||||
|
"-k"
|
||||||
|
"not test_multithreading_with_interrupts"))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-six))
|
(list python-six))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Add table
Reference in a new issue