From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 02/10] gnu: Update python-unittest2 to 0.6.0 Date: Fri, 6 May 2016 14:49:21 -0400 Message-ID: <20160506184921.GC8278@jasmine> References: <1461939663-5936-1-git-send-email-tipecaml@gmail.com> <1461939663-5936-3-git-send-email-tipecaml@gmail.com> <20160430213306.GB32505@jasmine> <572BF347.9080301@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aykot-0004Sq-5P for guix-devel@gnu.org; Fri, 06 May 2016 14:49:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aykoh-0006GF-D1 for guix-devel@gnu.org; Fri, 06 May 2016 14:49:41 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:49982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aykof-0006D7-4S for guix-devel@gnu.org; Fri, 06 May 2016 14:49:35 -0400 Content-Disposition: inline In-Reply-To: <572BF347.9080301@gmail.com> 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" To: Cyril Roelandt Cc: guix-devel@gnu.org On Fri, May 06, 2016 at 03:28:39AM +0200, Cyril Roelandt wrote: > On 04/30/2016 11:33 PM, Leo Famulari wrote: > > As with python-cmd2, could you if setuptools is required for the > > python-3 variant? > > > > So, I applied the following patch: > > > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -1520,8 +1520,7 @@ matching them against a list of media-ranges.") > (build-system python-build-system) > (propagated-inputs > `(("python-six" ,python-six))) > - (inputs > - `(("python-setuptools" ,python-setuptools))) > + ;(inputs `(("python-setuptools" ,python-setuptools))) > (home-page "http://pypi.python.org/pypi/unittest2") > (synopsis "Python unit testing library") > (description > @@ -1530,7 +1529,12 @@ standard library.") > (license psfl))) I think you forgot to add a line like this one to the python-3 variant's definition: (properties `((python2-variant . ,(delay python2-unittest2)))) Can you check if everything works when you do that?