1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 19:40:46 +02:00

Merge branch 'master' into core-updates

This commit is contained in:
Mark H Weaver 2017-08-11 03:49:24 -04:00
commit 3785e42e52
No known key found for this signature in database
GPG key ID: 7CEF29847562C516
20 changed files with 316 additions and 611 deletions

View file

@ -6565,6 +6565,29 @@ connection to each user.")
("python2-singledispatch" ,python2-singledispatch)
,@(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
(define-public python-backports-abc
(package