From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Re: [PATCH v3] gnu: Add python-prompt-toolkit, python2-prompt-toolkit. Date: Wed, 29 Jun 2016 11:30:33 +0200 Message-ID: <20160629113033.5297f1e0@scratchpost.org> References: <20160628101945.4225c7a5@scratchpost.org> <20160629094040.01b99f6a@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIBpZ-0001oO-Cy for guix-devel@gnu.org; Wed, 29 Jun 2016 05:30:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bIBpU-0001rY-9W for guix-devel@gnu.org; Wed, 29 Jun 2016 05:30:48 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:46656) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIBpU-0001rJ-2t for guix-devel@gnu.org; Wed, 29 Jun 2016 05:30:44 -0400 Received: from localhost (178.113.11.44.wireless.dyn.drei.com [178.113.11.44]) by dd1012.kasserver.com (Postfix) with ESMTPSA id 897591CA0A53 for ; Wed, 29 Jun 2016 11:30:41 +0200 (CEST) In-Reply-To: <20160629094040.01b99f6a@scratchpost.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" Cc: guix-devel@gnu.org On Wed, 29 Jun 2016 09:40:40 +0200 Danny Milosavljevic wrote: > +(define-public python2-prompt-toolkit > + (let ((base (package-with-python2 (strip-python2-variant python-prompt-toolkit)))) > + (package > + (inherit base) > + (native-inputs > + `(("python2-setuptools" ,python2-setuptools) > + ,@(package-native-inputs base)))))) Hmm. Now that I made it a native input instead of propagated input, the python2-wcwidth that is compiled alongside python2-prompt-toolkit doesn't find setuptools anymore. Why?