From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 2/2] gnu: python-tornado: Update to 4.3. Date: Fri, 26 Feb 2016 11:11:23 +0200 Message-ID: <1456477883-21423-3-git-send-email-efraim@flashner.co.il> References: <1456477883-21423-1-git-send-email-efraim@flashner.co.il> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40160) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZER0-00008l-D0 for guix-devel@gnu.org; Fri, 26 Feb 2016 04:11:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZEQy-0004HS-LI for guix-devel@gnu.org; Fri, 26 Feb 2016 04:11:38 -0500 Received: from flashner.co.il ([178.62.234.194]:53444) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZEQy-0004HI-Eb for guix-devel@gnu.org; Fri, 26 Feb 2016 04:11:36 -0500 Received: from localhost.localdomain (85.65.229.31.dynamic.barak-online.net [85.65.229.31]) by flashner.co.il (Postfix) with ESMTPSA id 8D8114004E for ; Fri, 26 Feb 2016 09:11:35 +0000 (UTC) In-Reply-To: <1456477883-21423-1-git-send-email-efraim@flashner.co.il> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-tornado): Update to 4.3. [native-inputs]: Add python-backports-abc. (python2-tornado)[inputs]: Add python2-singledispatch. --- gnu/packages/python.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6d1a73b..1021a8e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4958,20 +4958,19 @@ It is written entirely in Python.") (define-public python-tornado (package (name "python-tornado") - (version "4.1") + (version "4.3") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/t/tornado/" - "tornado-" version ".tar.gz")) + (uri (pypi-uri "tornado" version)) (sha256 - (base32 "0a12f00h277zbifibnj46wf14801f573irvf6hwkgja5vspd7awr")))) + (base32 "1gzgwayl6hmc9jfcl88bni4jcsk2jcca9dn1rvrfsvnijcjx7hn9")))) (build-system python-build-system) (inputs `(("python-certifi" ,python-certifi))) (native-inputs - `(("python-setuptools" ,python-setuptools))) + `(("python-backports-abc" ,python-backports-abc) + ("python-setuptools" ,python-setuptools))) (home-page "http://www.tornadoweb.org/") (synopsis "Python web framework and asynchronous networking library") (description @@ -4988,6 +4987,7 @@ connection to each user.") (inputs `(("python2-backport-ssl-match-hostname" ,python2-backport-ssl-match-hostname) + ("python2-singledispatch", python2-singledispatch) ,@(package-inputs tornado)))))) ;; the python- version can be removed with python-3.5 -- 2.7.0