From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 4/5] gnu: Add python-pytest-httpbin Date: Wed, 5 Apr 2017 10:01:50 +0300 Message-ID: <20170405070151.3417-3-fredmanglis@gmail.com> References: <20170405070151.3417-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59905) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cvewP-0006gj-T9 for guix-devel@gnu.org; Wed, 05 Apr 2017 03:01:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cvewO-00050N-MW for guix-devel@gnu.org; Wed, 05 Apr 2017 03:01:17 -0400 Received: from mail-wr0-x232.google.com ([2a00:1450:400c:c0c::232]:32999) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cvewO-000502-HS for guix-devel@gnu.org; Wed, 05 Apr 2017 03:01:16 -0400 Received: by mail-wr0-x232.google.com with SMTP id w43so2779206wrb.0 for ; Wed, 05 Apr 2017 00:01:16 -0700 (PDT) Received: from penelope.lan (41-139-150-138.safaricombusiness.co.ke. [41.139.150.138]) by smtp.gmail.com with ESMTPSA id o196sm21141361wmg.12.2017.04.05.00.01.13 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 05 Apr 2017 00:01:14 -0700 (PDT) In-Reply-To: <20170405070151.3417-1-fredmanglis@gmail.com> 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): New variable. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8f08ddd..0ab3d04 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14030,3 +14030,27 @@ recognize TestCases.") (description "HTTP Request and Response Service which covers all kinds of HTTP scenarios") (license license:expat))) + +(define-public python-pytest-httpbin + (package + (name "python-pytest-httpbin") + (version "0.0.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-httpbin" version)) + (sha256 + (base32 + "08ghq923dn33rllip3vap2p9fb680g0i96jdn5lcpfy8amq8mbq3")))) + (build-system python-build-system) + (propagated-inputs + `(("python-six" ,python-six) + ("python-httpbin" ,python-httpbin) + ("python-pytest" ,python-pytest))) + (home-page + "https://github.com/kevin1024/pytest-httpbin") + (synopsis + "Easily test your HTTP library against a local copy of httpbin") + (description + "Easily test your HTTP library against a local copy of httpbin") + (license license:expat))) -- 2.10.2