From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 2/4] gnu: Add python2-enum34. Date: Sun, 14 Feb 2016 20:44:50 -0500 Message-ID: <7f5566f69c9f2184bebf647937630c869a3a60ad.1455500661.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60831) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aV8EC-0007b7-IZ for guix-devel@gnu.org; Sun, 14 Feb 2016 20:45:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aV8E6-0007EV-RB for guix-devel@gnu.org; Sun, 14 Feb 2016 20:45:27 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:46634) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aV8E6-0007E5-NO for guix-devel@gnu.org; Sun, 14 Feb 2016 20:45:22 -0500 Received: from localhost.localdomain (c-73-233-160-251.hsd1.pa.comcast.net [73.233.160.251]) by mail.messagingengine.com (Postfix) with ESMTPA id 5F74AC0001B for ; Sun, 14 Feb 2016 20:45:19 -0500 (EST) In-Reply-To: In-Reply-To: References: 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-enum34): New variable. (python2-cryptography)[propagated-inputs]: Add python2-enum34. (python-cryptography)[propagated-inputs]: Remove python-enum34. --- gnu/packages/python.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3e712fc..6e1c716 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1335,6 +1335,9 @@ bug tracker.") backported for previous versions of Python from 2.4 to 3.3.") (license bsd-3))) +(define-public python2-enum34 + (package-with-python2 python-enum34)) + (define-public python-parse-type (package (name "python-parse-type") @@ -5792,7 +5795,6 @@ responses, rather than doing any computation.") `(("python-cffi" ,python-cffi) ("python-six" ,python-six) ("python-pyasn1" ,python-pyasn1) - ("python-enum34" ,python-enum34) ("python-idna" ,python-idna) ("python-iso8601" ,python-iso8601))) (native-inputs @@ -5823,6 +5825,7 @@ message digests and key derivation functions.") `(("python2-ipaddress" ,python2-ipaddress) ("python2-backport-ssl-match-hostname" ,python2-backport-ssl-match-hostname) + ("python2-enum34" ,python2-enum34) ,@(package-propagated-inputs crypto)))))) (define-public python-pyopenssl -- 2.6.3