From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: [PATCH 4/18] gnu: Add python2-execnet. Date: Fri, 19 Feb 2016 18:31:05 -0800 Message-ID: <87k2m0nmdj.fsf@dustycloud.org> References: <87lh6lsgfa.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51420) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWxKN-00064a-N7 for guix-devel@gnu.org; Fri, 19 Feb 2016 21:31:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWxKM-0006ju-GT for guix-devel@gnu.org; Fri, 19 Feb 2016 21:31:23 -0500 Received: from dustycloud.org ([2600:3c02::f03c:91ff:feae:cb51]:50290) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWxKM-0006jp-8Q for guix-devel@gnu.org; Fri, 19 Feb 2016 21:31:22 -0500 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 74E382673E for ; Fri, 19 Feb 2016 21:31:21 -0500 (EST) In-reply-to: <87lh6lsgfa.fsf@dustycloud.org> 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 --=-=-= Content-Type: text/plain Updated patch. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0003-gnu-Add-python2-execnet.patch >From ca0527ce8bf80743866d89ff6354f22f782ac913 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sat, 13 Feb 2016 18:11:05 -0800 Subject: [PATCH 03/18] gnu: Add python2-execnet. * gnu/packages/python.scm (python2-execnet): New variable. --- gnu/packages/python.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ef91754..a5d42f5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6888,7 +6888,17 @@ minimal and fast API targetting the following uses: @item write scripts to administer multiple environments @end enumerate") (home-page "http://codespeak.net/execnet/") - (license license:expat))) + (license license:expat) + (properties `((python2-variant . ,(delay python2-execnet)))))) + +(define-public python2-execnet + (let ((execnet (package-with-python2 + (strip-python2-variant python-execnet)))) + (package + (inherit execnet) + (native-inputs + `(("python2-setuptools" ,python2-setuptools) + ,@(package-native-inputs execnet)))))) ;;; The software provided by this package was integrated into pytest 2.8. (define-public python-pytest-cache -- 2.6.3 --=-=-=--