From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 1/2] gnu: Add python-backports-abc. Date: Fri, 26 Feb 2016 11:11:22 +0200 Message-ID: <1456477883-21423-2-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]:40162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZER0-00008n-Dc 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 1aZEQx-0004HB-UV for guix-devel@gnu.org; Fri, 26 Feb 2016 04:11:38 -0500 Received: from flashner.co.il ([178.62.234.194]:53443) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZEQx-0004H6-Oq for guix-devel@gnu.org; Fri, 26 Feb 2016 04:11:35 -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 83A0B400AB for ; Fri, 26 Feb 2016 09:11:34 +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-backports-abc): 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 b67aed0..6d1a73b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4990,6 +4990,30 @@ connection to each user.") ,python2-backport-ssl-match-hostname) ,@(package-inputs tornado)))))) +;; the python- version can be removed with python-3.5 +(define-public python-backports-abc + (package + (name "python-backports-abc") + (version "0.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "backports_abc" version)) + (sha256 + (base32 + "19fh75lni9pb673n2fn505m1rckm0af0szcv5xx1qm1xpa940glb")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "https://github.com/cython/backports_abc") + (synopsis "Backport of additions to the 'collections.abc' module.") + (description + "A backport of recent additions to the 'collections.abc' module.") + (license psfl))) + +(define-public python2-backports-abc + (package-with-python2 python-backports-abc)) + (define-public python-waf (package (name "python-waf") -- 2.7.0