From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: [PATCH 5/18] gnu: Add python-pytest-xdist. Date: Sun, 21 Feb 2016 18:57:22 -0800 Message-ID: <878u2d4fl9.fsf@dustycloud.org> References: <87k2m5sgep.fsf@dustycloud.org> <87io1knmcz.fsf@dustycloud.org> <20160220044007.GC14995@jasmine> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34561) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXggj-00024h-Cn for guix-devel@gnu.org; Sun, 21 Feb 2016 21:57:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXgge-0002L1-I5 for guix-devel@gnu.org; Sun, 21 Feb 2016 21:57:29 -0500 Received: from dustycloud.org ([50.116.34.160]:49266) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXgge-0002Kv-7u for guix-devel@gnu.org; Sun, 21 Feb 2016 21:57:24 -0500 In-reply-to: <20160220044007.GC14995@jasmine> 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: Leo Famulari Cc: guix-devel@gnu.org Leo Famulari writes: > On Fri, Feb 19, 2016 at 06:31:28PM -0800, Christopher Allan Webber wrote: >> Updated. >> > >> From 5930defefa4c7966afd1c20f66d22c8b95bf024f Mon Sep 17 00:00:00 2001 >> From: Christopher Allan Webber >> Date: Sat, 13 Feb 2016 18:11:47 -0800 >> Subject: [PATCH 04/18] gnu: Add python-pytest-xdist. >> >> * gnu/packages/python.scm (python-pytest-xdist, python2-pytest-xdist): >> New variables. >> --- >> gnu/packages/python.scm | 36 ++++++++++++++++++++++++++++++++++++ >> 1 file changed, 36 insertions(+) >> >> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm >> index a5d42f5..a6823bc 100644 >> --- a/gnu/packages/python.scm >> +++ b/gnu/packages/python.scm >> @@ -1665,6 +1665,42 @@ supports coverage of subprocesses.") >> (define-public python2-pytest-runner >> (package-with-python2 python-pytest-runner)) >> >> +(define-public python-pytest-xdist >> + (package >> + (name "python-pytest-xdist") >> + (version "1.14") >> + (source >> + (origin >> + (method url-fetch) >> + (uri (pypi-uri "pytest-xdist" version ".zip")) >> + (sha256 >> + (base32 >> + "08rn2l39ds60xshs4js787l84pfckksqklfq2wq9x8ig2aci2pja")))) >> + (build-system python-build-system) >> + (native-inputs >> + `(("unzip" ,unzip))) >> + (propagated-inputs >> + `(("python-setuptools" ,python-setuptools) >> + ("python-setuptools-scm" ,python-setuptools-scm) >> + ("python-execnet" ,python-execnet) >> + ("python-pytest" ,python-pytest) >> + ("python-py" ,python-py))) > > I see how it could make sense for a testing program, but I just want to > be sure; should setuptools and pytest be propagated? It seems they're fine as native-inputs, so I made that change.