mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add python-tornado-http-auth.
* gnu/packages/python.scm (python-tornado-http-auth): New variable.
This commit is contained in:
parent
4c6c683862
commit
c795bc79d9
1 changed files with 23 additions and 0 deletions
|
@ -6560,6 +6560,29 @@ (define-public python2-tornado
|
||||||
("python2-singledispatch" ,python2-singledispatch)
|
("python2-singledispatch" ,python2-singledispatch)
|
||||||
,@(package-propagated-inputs tornado))))))
|
,@(package-propagated-inputs tornado))))))
|
||||||
|
|
||||||
|
(define-public python-tornado-http-auth
|
||||||
|
(package
|
||||||
|
(name "python-tornado-http-auth")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "tornado-http-auth" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0znrgqd7k2s4ia474xizi6h3061zj4sn5n6cq76bkwl3wwshifn5"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-tornado" ,python-tornado)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/gvalkov/tornado-http-auth")
|
||||||
|
(synopsis
|
||||||
|
"Digest and basic authentication module for Tornado")
|
||||||
|
(description
|
||||||
|
"Provides support for adding authentication to services using the Tornado
|
||||||
|
web framework, either via the basic or digest authentication schemes.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
;; the python- version can be removed with python-3.5
|
;; the python- version can be removed with python-3.5
|
||||||
(define-public python-backports-abc
|
(define-public python-backports-abc
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue