From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH] gnu: Add python-xlrd. Date: Sat, 19 Sep 2015 17:53:55 +0200 Message-ID: <20150919155355.GA10848@debian> References: <55FD6561.8050608@uq.edu.au> <87k2rmflyv.fsf@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33980) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZdKSm-0007k4-I3 for guix-devel@gnu.org; Sat, 19 Sep 2015 11:54:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZdKSj-0005Pa-A6 for guix-devel@gnu.org; Sat, 19 Sep 2015 11:54:08 -0400 Received: from mout.kundenserver.de ([212.227.17.10]:54383) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZdKSj-0005PB-0c for guix-devel@gnu.org; Sat, 19 Sep 2015 11:54:05 -0400 Content-Disposition: inline In-Reply-To: <87k2rmflyv.fsf@openmailbox.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: Mathieu Lirzin Cc: "guix-devel@gnu.org" On Sat, Sep 19, 2015 at 05:49:28PM +0200, Mathieu Lirzin wrote: > > + (native-inputs > > + `(("python-setuptools" ,python2-setuptools) > > + ("python-nose" ,python2-nose))) > I don't know python packaging but when I look at other packages it > seems that these are usually used as “inputs” not > “native-inputs”. There was a discussion about python-setuptools; I do not remember the outcome... For python-nose, it seems to be used for tests only, so native-inputs would be the right field. Can this not be checked by running guix gc --references `guix build python-xlrd` and seeing whether the packages are referenced or not? > I think it should be “python-*” instead of “python-2”. Am I wrong? Yes, the package-with-python procedure will rewrite this for the python2-xlrd package. Andreas