From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 09/10] gnu: Add python2-functools32. Date: Thu, 3 Dec 2015 16:43:30 +0200 Message-ID: <1449153811-32039-10-git-send-email-efraim@flashner.co.il> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50378) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6q-0006GW-M2 for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4V6p-0000jT-4e for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:48 -0500 Received: from flashner.co.il ([178.62.234.194]:60941) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6o-0000jG-U8 for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:47 -0500 Received: from debian-netbook.jct.ac.il (unknown [213.151.53.59]) by flashner.co.il (Postfix) with ESMTPSA id 4AB6340556 for ; Thu, 3 Dec 2015 14:43:46 +0000 (UTC) In-Reply-To: <1449153811-32039-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 (python2-functools32): New variable. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0323399..ab0f56e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6121,6 +6121,30 @@ authenticated session objects providing things like keep-alive.") `(("python2-unittest2", python2-unittest2) ,@(package-native-inputs rauth)))))) +(define-public python2-functools32 + (package + (name "python2-functools32") + (version "3.2.3-2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "functools32" version)) + (sha256 + (base32 + "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2 + #:tests? #f)) ; no test target + (native-inputs + `(("python2-setuptools" ,python2-setuptools))) + (home-page "https://github.com/MiCHiLU/python-functools32") + (synopsis + "Backport of the functools module from Python 3.2.3") + (description + "Backport of the functools module from Python 3.2.3 for use on 2.7 and PyPy.") + (license license:expat))) + (define-public python2-futures (package (name "python2-futures") -- 2.6.2