[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26524: [PATCH 3/4] gnu: Add python-pytest-httpbin
From: |
Muriithi Frederick Muriuki |
Subject: |
bug#26524: [PATCH 3/4] gnu: Add python-pytest-httpbin |
Date: |
Sun, 7 May 2017 05:29:42 +0300 |
* gnu/packages/python.scm (python-pytest-httpbin): New variable.
---
gnu/packages/web.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index b975b18..a8e5463 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4517,3 +4517,29 @@ exploit attempts.")
response. This exists to cover all kinds of HTTP scenarios. All endpoint
responses are
JSON-encoded.")
(license l:isc)))
+
+(define-public python-pytest-httpbin
+ (package
+ (name "python-pytest-httpbin")
+ (version "0.2.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-httpbin" version))
+ (sha256
+ (base32
+ "1y0v2v7xpzpyd4djwp7ad8ifnlxp8r1y6dfbxg5ckzvllkgridn5"))))
+ (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
+ "Test your HTTP library against a local copy of httpbin")
+ (description
+ "@code{Pytest-httpbin} creates a @code{pytest} fixture that is
dependency-injected
+into your tests. It automatically starts up a HTTP server in a separate
thread running
address@hidden and provides your test with the URL in the fixture.")
+ (license l:expat)))
--
2.10.2
- bug#26524: [PATCH 3/4] gnu: Add python-pytest-httpbin,
Muriithi Frederick Muriuki <=