From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH] Add python2-seqmagick. Date: Mon, 28 Sep 2015 11:54:32 +0200 Message-ID: References: <55FAA83C.3040403@uq.edu.au> <55FD2C91.9080203@uq.edu.au> <5605C728.6060906@uq.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38091) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgV8w-0007ip-1J for guix-devel@gnu.org; Mon, 28 Sep 2015 05:54:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZgV8r-0007sR-0e for guix-devel@gnu.org; Mon, 28 Sep 2015 05:54:45 -0400 Received: from venus.bbbm.mdc-berlin.de ([141.80.25.30]:52914) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgV8q-0007qZ-NI for guix-devel@gnu.org; Mon, 28 Sep 2015 05:54:40 -0400 In-Reply-To: <5605C728.6060906@uq.edu.au> 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: Ben Woodcroft Cc: "guix-devel@gnu.org" Ben Woodcroft writes: > Thanks for that Ricardo. One question though. > > On 26/09/15 00:09, Ricardo Wurmus wrote: >> [..] >> (although the PYTHONPATH is a little too >> broad as you also noted). > I was wondering whether including the native-inputs breaks=20 > reproducibility. For instance, if we install seqmagick through a=20 > substitute, then the wrapper will point to a python-nose (a native-inpu= t=20 > of seqmagick) directory in the store, even if this directory does not=20 > exist. So then, later building python-nose and creating the directory i= n=20 > the PYTHONPATH might change the behavior of seqmagick, no? I think this possibility does in fact exist, but it usually isn=E2=80=99t= a problem unless the programme were designed to behave differently in the presence of the native-input. If, for example, python-nose provided a conflicting module overriding one used by seqmagick at runtime, this could conceivably lead to an error if python-nose would be added to the store. I do not think that this is a realistic problem, but wrapping an executable in a PYTHONPATH that is needlessly large is certainly not nice. ~~ Ricardo