gnu: python-tornado: Update to 5.1.1.
* gnu/packages/python-web.scm (python-tornado): Update to 5.1.1. [propagated-inputs]: Move python-backports-abc to python2-tornado only. [home-page]: Use https.master
parent
474039554d
commit
3fcaf42a1c
|
@ -665,13 +665,14 @@ teams extension for python-openid.")
|
||||||
(define-public python-tornado
|
(define-public python-tornado
|
||||||
(package
|
(package
|
||||||
(name "python-tornado")
|
(name "python-tornado")
|
||||||
(version "4.5.1")
|
(version "5.1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "tornado" version))
|
(uri (pypi-uri "tornado" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1zbkgcdfq81k298awrm8p0xwbwwn2p3nbizdglzfbkskhai082fv"))))
|
(base32
|
||||||
|
"02clqk2116jbnq8lnaqmdw3p52nqrd9ib59r4xz2ll43fpcmhlaf"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(;; FIXME: Two tests error out with:
|
'(;; FIXME: Two tests error out with:
|
||||||
|
@ -682,14 +683,12 @@ teams extension for python-openid.")
|
||||||
;; (lambda _
|
;; (lambda _
|
||||||
;; ;; 'setup.py test' hits an AssertionError on BSD-specific
|
;; ;; 'setup.py test' hits an AssertionError on BSD-specific
|
||||||
;; ;; "tornado/platform/kqueue.py". This is the supported method:
|
;; ;; "tornado/platform/kqueue.py". This is the supported method:
|
||||||
;; (invoke- "python" "-m" "tornado.test")
|
;; (invoke "python" "-m" "tornado.test.runtests")
|
||||||
;; #t)))
|
;; #t)))
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-certifi" ,python-certifi)))
|
`(("python-certifi" ,python-certifi)))
|
||||||
(propagated-inputs
|
(home-page "https://www.tornadoweb.org/")
|
||||||
`(("python-backports-abc" ,python-backports-abc)))
|
|
||||||
(home-page "http://www.tornadoweb.org/")
|
|
||||||
(synopsis "Python web framework and asynchronous networking library")
|
(synopsis "Python web framework and asynchronous networking library")
|
||||||
(description
|
(description
|
||||||
"Tornado is a Python web framework and asynchronous networking library,
|
"Tornado is a Python web framework and asynchronous networking library,
|
||||||
|
@ -706,6 +705,7 @@ connection to each user.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python2-backport-ssl-match-hostname"
|
`(("python2-backport-ssl-match-hostname"
|
||||||
,python2-backport-ssl-match-hostname)
|
,python2-backport-ssl-match-hostname)
|
||||||
|
("python2-backports-abc" ,python2-backports-abc)
|
||||||
("python2-singledispatch" ,python2-singledispatch)
|
("python2-singledispatch" ,python2-singledispatch)
|
||||||
,@(package-propagated-inputs tornado))))))
|
,@(package-propagated-inputs tornado))))))
|
||||||
|
|
||||||
|
|
Reference in New Issue