diff options
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r-- | gnu/packages/python-crypto.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index bf2a532cf4..3cd58bf0ea 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -1329,17 +1329,17 @@ Derivation function (HKDF) defined in RFC 5869.") (define-public python-spake2 (package (name "python-spake2") - (version "0.8") + (version "0.9") (source (origin (method url-fetch) (uri (pypi-uri "spake2" version)) (sha256 (base32 - "1x16r7lrbklvfzbacb66qv9iiih6liq1y612dqh2chgf555n2yn1")))) + "0d4kbaxi4cv8klyqh6yb0p0qiwfdwvczy1h2mzvmlfdcsnlc87s2")))) (build-system python-build-system) (propagated-inputs - (list python-hkdf)) + (list python-cryptography python-hkdf)) (home-page "https://github.com/warner/python-spake2") (synopsis "SPAKE2 password-authenticated key exchange in Python") (description "This package provides a Python implementation of the SPAKE2 |