[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/5] gnu: Add python-httpbin
From: |
Muriithi Frederick Muriuki |
Subject: |
[PATCH 3/5] gnu: Add python-httpbin |
Date: |
Wed, 5 Apr 2017 10:01:49 +0300 |
* 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