From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 3/5] gnu: Add python-httpbin Date: Wed, 5 Apr 2017 10:01:49 +0300 Message-ID: <20170405070151.3417-2-fredmanglis@gmail.com> References: <20170405070151.3417-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59904) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cvewP-0006gi-Sv for guix-devel@gnu.org; Wed, 05 Apr 2017 03:01:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cvewM-0004zu-QV for guix-devel@gnu.org; Wed, 05 Apr 2017 03:01:17 -0400 Received: from mail-wm0-x22f.google.com ([2a00:1450:400c:c09::22f]:34614) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cvewM-0004zW-KU for guix-devel@gnu.org; Wed, 05 Apr 2017 03:01:14 -0400 Received: by mail-wm0-x22f.google.com with SMTP id w204so8206745wmd.1 for ; Wed, 05 Apr 2017 00:01:14 -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.11 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 05 Apr 2017 00:01:12 -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-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 9c850db..8f08ddd 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14006,3 +14006,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") + (license license:expat))) -- 2.10.2