From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: [PATCH 08/17] gnu: Add python-pytest-localserver. Date: Wed, 06 Jan 2016 13:09:41 -0600 Message-ID: <5374be8e2ebf5fd9dace5861e39eba26@openmailbox.org> References: <027eaaf7f6bb06c298bbe469fcc502d22a903d38.1451865663.git.leo@famulari.name> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53523) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGtT3-0006Hn-C3 for guix-devel@gnu.org; Wed, 06 Jan 2016 14:09:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aGtSz-0004XE-DX for guix-devel@gnu.org; Wed, 06 Jan 2016 14:09:57 -0500 Received: from smtp2.openmailbox.org ([62.4.1.36]:52775) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGtSz-0004Wh-4n for guix-devel@gnu.org; Wed, 06 Jan 2016 14:09:53 -0500 In-Reply-To: <027eaaf7f6bb06c298bbe469fcc502d22a903d38.1451865663.git.leo@famulari.name> 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: Leo Famulari Cc: guix-devel@gnu.org, guix-devel-bounces+ericbavier=openmailbox.org@gnu.org 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. -- `~Eric