From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 4/5] gnu: Add python-pytest-httpbin Date: Sun, 26 Mar 2017 12:56:33 +0300 Message-ID: <20170326095634.4644-4-fredmanglis@gmail.com> References: <20170326095634.4644-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39551) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs4u0-0006yg-FL for guix-devel@gnu.org; Sun, 26 Mar 2017 05:56:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs4tz-0002cv-Hb for guix-devel@gnu.org; Sun, 26 Mar 2017 05:56:00 -0400 Received: from mail-wr0-x242.google.com ([2a00:1450:400c:c0c::242]:34851) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cs4tz-0002b3-Bi for guix-devel@gnu.org; Sun, 26 Mar 2017 05:55:59 -0400 Received: by mail-wr0-x242.google.com with SMTP id p52so1336366wrc.2 for ; Sun, 26 Mar 2017 02:55:59 -0700 (PDT) In-Reply-To: <20170326095634.4644-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 Cc: pjotr2017@thebird.nl * gnu/packages/python.scm (python-pytest-httpbin): New variable. --- gnu/packages/python.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index fb28a9f..3eee33b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14052,3 +14052,28 @@ recognize TestCases.") (description "HTTP Request and Response Service which covers all kinds of HTTP scenarios, e.g. GET, POST, PUT, DELETE, etc.") (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 + "This enables testing HTTP libraries quickly by using a local copy of @code{httpbin}. +It enables even offline testing of the libraries.") + (license license:expat))) -- 2.10.2