From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Woodcroft Subject: [PATCH 05/10] gnu: Add python-future. Date: Thu, 21 Apr 2016 23:21:56 +1000 Message-ID: <1461244921-7412-6-git-send-email-donttrustben@gmail.com> References: <1461244921-7412-1-git-send-email-donttrustben@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40292) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atEZE-0002GI-Vv for Guix-devel@gnu.org; Thu, 21 Apr 2016 09:22:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1atEZB-0004KH-FV for Guix-devel@gnu.org; Thu, 21 Apr 2016 09:22:48 -0400 Received: from mail-pa0-x241.google.com ([2607:f8b0:400e:c03::241]:32897) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atEZB-0004Iu-9W for Guix-devel@gnu.org; Thu, 21 Apr 2016 09:22:45 -0400 Received: by mail-pa0-x241.google.com with SMTP id vv3so7223914pab.0 for ; Thu, 21 Apr 2016 06:22:45 -0700 (PDT) Received: from localhost.localdomain ([103.25.181.216]) by smtp.googlemail.com with ESMTPSA id m12sm1325947pfi.5.2016.04.21.06.22.42 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 21 Apr 2016 06:22:43 -0700 (PDT) In-Reply-To: <1461244921-7412-1-git-send-email-donttrustben@gmail.com> 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" To: Guix-devel@gnu.org * gnu/packages/python.scm (python-future, python2-future): New variables. --- gnu/packages/python.scm | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 28b1ee0..54c3202 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8833,13 +8833,46 @@ command line arguments.") (define-public python2-pytest-flakes (let ((base (package-with-python2 - (strip-python2-variant python-pytest-flakes)))) + (strip-python2-variant python-pytest-flakes)))) (package (inherit base) (native-inputs `(,@(package-native-inputs base) ("python2-setuptools" ,python2-setuptools)))))) +(define-public python-future + (package + (name "python-future") + (version "0.15.2") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/f/future/future-" + version + ".tar.gz")) + (sha256 + (base32 + "15wvcfzssc68xqnqi1dq4fhd0848hwi9jn42hxyvlqna40zijfrx")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; Tests connect to the network + (home-page "http://python-future.org") + (synopsis "Single-source support for Python 3 and 2") + (description + "@code{python-future} is the missing compatibility layer between Python 2 and +Python 3. It allows you to use a single, clean Python 3.x-compatible codebase +to support both Python 2 and Python 3 with minimal overhead.") + (license license:expat) + (properties `((python2-variant . ,(delay python2-future)))))) + +(define-public python2-future + (let ((base (package-with-python2 + (strip-python2-variant python-future)))) + (package + (inherit base) + (native-inputs `(("python2-setuptools" ,python2-setuptools)))))) + (define-public python-cysignals (package (name "python-cysignals") -- 2.5.0