mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-spake2.
* gnu/packages/python-crypto.scm (python-spake2): New variable.
This commit is contained in:
parent
0a90c78926
commit
fc681a18f5
1 changed files with 20 additions and 0 deletions
|
@ -1016,3 +1016,23 @@ (define-public python-hkdf
|
|||
(description "This package provides a Python implementation of the HMAC Key
|
||||
Derivation function (HKDF) defined in RFC 5869.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public python-spake2
|
||||
(package
|
||||
(name "python-spake2")
|
||||
(version "0.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "spake2" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1x16r7lrbklvfzbacb66qv9iiih6liq1y612dqh2chgf555n2yn1"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-hkdf" ,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
|
||||
Password-Authenticated Key Exchange algorithm.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue