From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: [PATCH 4/18] gnu: Add python2-execnet. Date: Mon, 15 Feb 2016 15:27:21 -0800 Message-ID: <87lh6lsgfa.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: text/x-patch Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33568) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVSY7-0003IA-W1 for guix-devel@gnu.org; Mon, 15 Feb 2016 18:27:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVSY7-00082H-27 for guix-devel@gnu.org; Mon, 15 Feb 2016 18:27:23 -0500 Received: from dustycloud.org ([2600:3c02::f03c:91ff:feae:cb51]:60616) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVSY6-00082A-RF for guix-devel@gnu.org; Mon, 15 Feb 2016 18:27:22 -0500 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 2902526676 for ; Mon, 15 Feb 2016 18:27:22 -0500 (EST) Content-Disposition: inline; filename=0004-gnu-Add-python2-execnet.patch 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 >From e2600910d0348451cbaa686a3e5adb57282228cc Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sat, 13 Feb 2016 18:11:05 -0800 Subject: [PATCH 04/18] gnu: Add python2-execnet. * gnu/packages/python.scm (python2-execnet): New variable. --- gnu/packages/python.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 83efbfb..29efce5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6891,7 +6891,15 @@ 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 + (package + (inherit (package-with-python2 + (strip-python2-variant python-execnet))) + (inputs + `(("python2-setuptools" ,python2-setuptools))))) ;;; The software provided by this package was integrated into pytest 2.8. (define-public python-pytest-cache -- 2.6.3