mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add python-hawkauthlib.
* gnu/packages/python-web.scm (python-hawkauthlib): New variable.
This commit is contained in:
parent
d08b325843
commit
0750f344ec
1 changed files with 22 additions and 0 deletions
|
@ -2649,3 +2649,25 @@ (define-public python-google-api-client
|
||||||
|
|
||||||
(define-public python2-google-api-client
|
(define-public python2-google-api-client
|
||||||
(package-with-python2 python-google-api-client))
|
(package-with-python2 python-google-api-client))
|
||||||
|
|
||||||
|
(define-public python-hawkauthlib
|
||||||
|
(package
|
||||||
|
(name "python-hawkauthlib")
|
||||||
|
(version "2.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "hawkauthlib" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"03ai47s4h8nfnrf25shbfvkm1b9n1ccd4nmmj280sg1fayi69zgg"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-requests" ,python-requests)
|
||||||
|
("python-webob" ,python-webob)))
|
||||||
|
(home-page "https://github.com/mozilla-services/hawkauthlib")
|
||||||
|
(synopsis "Hawk Access Authentication protocol")
|
||||||
|
(description
|
||||||
|
"This is a low-level Python library for implementing Hawk Access Authentication,
|
||||||
|
a simple HTTP request-signing scheme.")
|
||||||
|
(license license:mpl2.0)))
|
||||||
|
|
Loading…
Reference in a new issue