gnu: python-tornado: Update to 4.3.
* gnu/packages/python.scm (python-tornado): Update to 4.3. [native-inputs]: Add python-backports-abc. (python2-tornado)[inputs]: Add python2-singledispatch.
This commit is contained in:
parent
6b59fc1020
commit
a724924beb
|
@ -4958,20 +4958,19 @@ It is written entirely in Python.")
|
||||||
(define-public python-tornado
|
(define-public python-tornado
|
||||||
(package
|
(package
|
||||||
(name "python-tornado")
|
(name "python-tornado")
|
||||||
(version "4.1")
|
(version "4.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (pypi-uri "tornado" version))
|
||||||
"https://pypi.python.org/packages/source/t/tornado/"
|
|
||||||
"tornado-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0a12f00h277zbifibnj46wf14801f573irvf6hwkgja5vspd7awr"))))
|
(base32 "1gzgwayl6hmc9jfcl88bni4jcsk2jcca9dn1rvrfsvnijcjx7hn9"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-certifi" ,python-certifi)))
|
`(("python-certifi" ,python-certifi)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-setuptools" ,python-setuptools)))
|
`(("python-backports-abc" ,python-backports-abc)
|
||||||
|
("python-setuptools" ,python-setuptools)))
|
||||||
(home-page "http://www.tornadoweb.org/")
|
(home-page "http://www.tornadoweb.org/")
|
||||||
(synopsis "Python web framework and asynchronous networking library")
|
(synopsis "Python web framework and asynchronous networking library")
|
||||||
(description
|
(description
|
||||||
|
@ -4988,6 +4987,7 @@ connection to each user.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("python2-backport-ssl-match-hostname"
|
`(("python2-backport-ssl-match-hostname"
|
||||||
,python2-backport-ssl-match-hostname)
|
,python2-backport-ssl-match-hostname)
|
||||||
|
("python2-singledispatch", python2-singledispatch)
|
||||||
,@(package-inputs tornado))))))
|
,@(package-inputs tornado))))))
|
||||||
|
|
||||||
;; the python- version can be removed with python-3.5
|
;; the python- version can be removed with python-3.5
|
||||||
|
|
Loading…
Reference in New Issue