From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: git-cola Date: Wed, 1 Mar 2017 10:30:55 -0500 Message-ID: <20170301153055.GB18139@jasmine> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58539) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cj6Da-0006GE-UQ for help-guix@gnu.org; Wed, 01 Mar 2017 10:31:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cj6DV-0004xr-6L for help-guix@gnu.org; Wed, 01 Mar 2017 10:31:06 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:55451) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cj6DV-0004x4-0N for help-guix@gnu.org; Wed, 01 Mar 2017 10:31:01 -0500 Content-Disposition: inline In-Reply-To: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Catonano Cc: help-guix On Wed, Mar 01, 2017 at 02:59:21PM +0100, Catonano wrote: > I'm trying to package git-cola > > it uses a makefile and such makefile calls the python machinery for > building (python setup.py ...) with some arguments > > make cannot find the command "python" > > starting phase `build' > make: python: Command not found > python setup.py build > make: python: Command not found > make: *** [Makefile:91: build] Error 127 > phase `build' failed after 0.0 seconds > > Python is in the inputs, though > > Like this > (inputs > `(("python" ,python))) > > How can I let it find Python ? The python package provides a `python3` executable, but not `python`. You can use the python-wrapper package if you need a `python` executable that is Python 3. There's an example in the package definition of python-tlsh.