From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 11/11] gnu: Add python-pytest-httpbin-0.0.7. Date: Tue, 13 Sep 2016 01:38:27 +0000 Message-ID: <20160913013827.25877-11-ng0@we.make.ritual.n0.is> References: <20160913013827.25877-1-ng0@we.make.ritual.n0.is> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43705) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjcgS-0000wk-C7 for guix-devel@gnu.org; Mon, 12 Sep 2016 21:38:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bjcgR-0000gI-Az for guix-devel@gnu.org; Mon, 12 Sep 2016 21:38:48 -0400 Received: from aibo.runbox.com ([91.220.196.211]:37090) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjcgR-0000fo-3s for guix-devel@gnu.org; Mon, 12 Sep 2016 21:38:47 -0400 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1bjcgQ-0001BI-CY for guix-devel@gnu.org; Tue, 13 Sep 2016 03:38:46 +0200 In-Reply-To: <20160913013827.25877-1-ng0@we.make.ritual.n0.is> 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" To: guix-devel@gnu.org * gnu/packages/python.scm (python-pytest-httpbin-0.0.7): New variable. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 5f7f8e0..64135d2 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1777,6 +1777,28 @@ thread running httpbin and provides your test with the URL in the fixture.") ("python2-httpbin" ,python2-httpbin) ("python2-six" ,python2-six))))) +(define-public python-pytest-httpbin-0.0.7 + (package + (inherit python-pytest-httpbin) + (version "0.0.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-httpbin" version)) + (sha256 + (base32 + "08ghq923dn33rllip3vap2p9fb680g0i96jdn5lcpfy8amq8mbq3")))))) + +(define-public python2-pytest-httpbin-0.0.7 + (package + (inherit (package-with-python2 + (strip-python2-variant python-pytest-httpbin-0.0.7))) + (inputs `(("python2-setuptools" ,python2-setuptools) + ("python2-flask" ,python2-flask) + ("python2-decorator" ,python2-decorator) + ("python2-httpbin" ,python2-httpbin) + ("python2-six" ,python2-six))))) + (define-public python-pytest-runner (package (name "python-pytest-runner") -- 2.10.0