From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:36309) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gryqV-0006M3-QT for guix-patches@gnu.org; Fri, 08 Feb 2019 00:37:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gryqV-0006P3-6b for guix-patches@gnu.org; Fri, 08 Feb 2019 00:37:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39531) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gryqU-0006OX-TD for guix-patches@gnu.org; Fri, 08 Feb 2019 00:37:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gryqU-0000I4-GM for guix-patches@gnu.org; Fri, 08 Feb 2019 00:37:02 -0500 Subject: [bug#34365] [PATCH] gnu: Add python-daemon. Resent-Message-ID: References: <87va1w6iki.fsf@ponder> From: Ricardo Wurmus In-reply-to: <87va1w6iki.fsf@ponder> Date: Thu, 07 Feb 2019 10:49:40 +0100 Message-ID: <874l9gexmz.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Vagrant Cascadian Cc: 34365@debbugs.gnu.org Hi Vagrant, > * gnu/packages/python-xyz.scm (python-daemon): New variable. Thanks for the patch! > + (add-before 'check 'disable-tests > + (lambda _ > + ;; FIXME: Determine why test fails > + (substitute* "test/test_daemon.py" > + (("test_detaches_process_context") > + "skip_test_detaches_process_context"))))))) Before pushing this I=E2=80=99ll add a final #T to this phase. (In the pas= t #F would indicate failure, but that=E2=80=99s on longer the case. =E2=80=9Csu= bstitute*=E2=80=9D annoyingly returns an unspecified value.) > + (propagated-inputs > + `(("python-docutils" ,python-docutils) > + ("python-lockfile" ,python-lockfile) > + ("python-setuptools" ,python-setuptools))) > + (native-inputs > + `(("python-unittest2" ,python-unittest2) > + ("python-testtools" ,python-testtools) > + ("python-testscenarios" ,python-testscenarios) > + ("python-mock" ,python-mock) > + ("python-docutils" ,python-docutils))) Docutils is both among native inputs as well as regular inputs. Is this intended? > + (license (list license:asl2.0 license:gpl3+)))) What does this list mean? --=20 Ricardo