From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 08/17] gnu: Add python-pytest-localserver. Date: Thu, 7 Jan 2016 11:49:21 -0500 Message-ID: <20160107164921.GE3632@jasmine> References: <027eaaf7f6bb06c298bbe469fcc502d22a903d38.1451865663.git.leo@famulari.name> <5374be8e2ebf5fd9dace5861e39eba26@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54660) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDkZ-0004XG-Bf for guix-devel@gnu.org; Thu, 07 Jan 2016 11:49:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aHDkY-00087r-D7 for guix-devel@gnu.org; Thu, 07 Jan 2016 11:49:23 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:58569) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDkY-00087k-9l for guix-devel@gnu.org; Thu, 07 Jan 2016 11:49:22 -0500 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 1D4162089C for ; Thu, 7 Jan 2016 11:49:22 -0500 (EST) Content-Disposition: inline In-Reply-To: <5374be8e2ebf5fd9dace5861e39eba26@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: Eric Bavier Cc: guix-devel@gnu.org, guix-devel-bounces+ericbavier=openmailbox.org@gnu.org On Wed, Jan 06, 2016 at 01:09:41PM -0600, Eric Bavier wrote: > On 2016-01-03 18:05, Leo Famulari wrote: > >* gnu/packages/python.scm (python-pytest-localserver): New variable. > >--- > > gnu/packages/python.scm | 32 ++++++++++++++++++++++++++++++++ > > 1 file changed, 32 insertions(+) > > > >diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > >index 2cfdcaf..0dfebf2 100644 > >--- a/gnu/packages/python.scm > >+++ b/gnu/packages/python.scm > >@@ -6762,3 +6762,35 @@ minimal and fast API targetting the following uses: > > the last py.test invocation.") > > (home-page "https://bitbucket.org/hpk42/pytest-cache/") > > (license license:expat))) > >+ > >+(define-public python-pytest-localserver > >+ (package > >+ (name "python-pytest-localserver") > >+ (version "0.3.4") > >+ (source (origin > >+ (method url-fetch) > >+ (uri (string-append > >"https://pypi.python.org/packages/source/p" > >+ > >"/pytest-localserver/pytest-localserver-" > >+ version ".zip")) > > When https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00224.html > goes through, we should be able to use pypi-url here again. Nice, hopefully it is available soon. > > -- > `~Eric