From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 3/5] gnu: Add python-httpbin Date: Sun, 26 Mar 2017 12:56:32 +0300 Message-ID: <20170326095634.4644-3-fredmanglis@gmail.com> References: <20170326095634.4644-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39528) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs4ty-0006xG-Lz for guix-devel@gnu.org; Sun, 26 Mar 2017 05:55:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs4tx-0002Yv-EA for guix-devel@gnu.org; Sun, 26 Mar 2017 05:55:58 -0400 Received: from mail-wr0-x241.google.com ([2a00:1450:400c:c0c::241]:36572) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cs4tx-0002YD-45 for guix-devel@gnu.org; Sun, 26 Mar 2017 05:55:57 -0400 Received: by mail-wr0-x241.google.com with SMTP id u1so4300106wra.3 for ; Sun, 26 Mar 2017 02:55:56 -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-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 d94464c..fb28a9f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14028,3 +14028,27 @@ recognize TestCases.") @item the Maintainability Index (a Visual Studio metric) @end itemize") (license license:expat))) + +(define-public python-httpbin + (package + (name "python-httpbin") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "httpbin" version)) + (sha256 + (base32 + "1dc92lnk846hpilslrqnr63x55cxll4qx88gif8fm521gv9cbyvr")))) + (build-system python-build-system) + (propagated-inputs + `(("python-decorator" ,python-decorator) + ("python-flask" ,python-flask) + ("python-itsdangerous" ,python-itsdangerous) + ("python-markupsafe" ,python-markupsafe) + ("python-six" ,python-six))) + (home-page "https://github.com/Runscope/httpbin") + (synopsis "HTTP Request and Response Service") + (description "HTTP Request and Response Service which covers all kinds of HTTP +scenarios, e.g. GET, POST, PUT, DELETE, etc.") + (license license:expat))) -- 2.10.2