guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 09/17] gnu: Add python-wsgi-intercept.


From: Leo Famulari
Subject: [PATCH 09/17] gnu: Add python-wsgi-intercept.
Date: Sun, 3 Jan 2016 19:05:07 -0500

* gnu/packages/python.scm (python-wsgi-intercept): New variable.
---
 gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0dfebf2..437b66d 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6794,3 +6794,30 @@ the last py.test invocation.")
 framework which enables you to test server connections locally.")
     (home-page "https://pypi.python.org/pypi/pytest-localserver";)
     (license license:expat)))
+
+(define-public python-wsgi-intercept
+  (package
+    (name "python-wsgi-intercept")
+    (version "0.10.3")
+    (source (origin
+             (method url-fetch)
+             (uri (pypi-uri "wsgi_intercept" version))
+             (sha256
+              (base32
+               "0xyfchacywb1mql84270mcidsqc5ssyspd18yacjk82x2xc68h0r"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-pytest" ,python-pytest)))
+    (propagated-inputs
+     `(("python-httplib2" ,python-httplib2)
+       ("python-requests" ,python-requests)))
+    (synopsis "Puts a WSGI application in place of a real URI for testing")
+    (description "Wsgi_intercept installs a WSGI application in place of a real
+URI for testing.  Testing a WSGI application normally involves starting a
+server at a local host and port, then pointing your test code to that address.
+Instead, this library lets you intercept calls to any specific host/port
+combination and redirect them into a WSGI application importable by your test
+program.  Thus, you can avoid spawning multiple processes or threads to test
+your Web app.")
+    (home-page "https://github.com/cdent/wsgi-intercept";)
+    (license license:expat)))
-- 
2.6.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]