summaryrefslogtreecommitdiff
path: root/gnu/packages/python.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2016-02-26 10:55:56 +0200
committerEfraim Flashner <efraim@flashner.co.il>2016-02-28 10:53:42 +0200
commita724924bebfdab5b451b830d0db3ef892eb925ce (patch)
treef8d8a35e290684e2dd7fd5c5b9521ce361ccf3c4 /gnu/packages/python.scm
parent6b59fc1020174e8157c9f6ab78fdddd54efa3eb2 (diff)
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.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r--gnu/packages/python.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 3cd02c112fc..812aeb00271 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4958,20 +4958,19 @@ It is written entirely in Python.")
4958(define-public python-tornado 4958(define-public python-tornado
4959 (package 4959 (package
4960 (name "python-tornado") 4960 (name "python-tornado")
4961 (version "4.1") 4961 (version "4.3")
4962 (source 4962 (source
4963 (origin 4963 (origin
4964 (method url-fetch) 4964 (method url-fetch)
4965 (uri (string-append 4965 (uri (pypi-uri "tornado" version))
4966 "https://pypi.python.org/packages/source/t/tornado/"
4967 "tornado-" version ".tar.gz"))
4968 (sha256 4966 (sha256
4969 (base32 "0a12f00h277zbifibnj46wf14801f573irvf6hwkgja5vspd7awr")))) 4967 (base32 "1gzgwayl6hmc9jfcl88bni4jcsk2jcca9dn1rvrfsvnijcjx7hn9"))))
4970 (build-system python-build-system) 4968 (build-system python-build-system)
4971 (inputs 4969 (inputs
4972 `(("python-certifi" ,python-certifi))) 4970 `(("python-certifi" ,python-certifi)))
4973 (native-inputs 4971 (native-inputs
4974 `(("python-setuptools" ,python-setuptools))) 4972 `(("python-backports-abc" ,python-backports-abc)
4973 ("python-setuptools" ,python-setuptools)))
4975 (home-page "http://www.tornadoweb.org/") 4974 (home-page "http://www.tornadoweb.org/")
4976 (synopsis "Python web framework and asynchronous networking library") 4975 (synopsis "Python web framework and asynchronous networking library")
4977 (description 4976 (description
@@ -4988,6 +4987,7 @@ connection to each user.")
4988 (inputs 4987 (inputs
4989 `(("python2-backport-ssl-match-hostname" 4988 `(("python2-backport-ssl-match-hostname"
4990 ,python2-backport-ssl-match-hostname) 4989 ,python2-backport-ssl-match-hostname)
4990 ("python2-singledispatch", python2-singledispatch)
4991 ,@(package-inputs tornado)))))) 4991 ,@(package-inputs tornado))))))
4992 4992
4993;; the python- version can be removed with python-3.5 4993;; the python- version can be removed with python-3.5