guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add python-pytest-httpbin


From: Leo Famulari
Subject: 02/02: gnu: Add python-pytest-httpbin
Date: Sun, 7 May 2017 15:23:38 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 86ab11205ed2b5c925ed9c8328736a433b0d933c
Author: Muriithi Frederick Muriuki <address@hidden>
Date:   Sun May 7 05:29:42 2017 +0300

    gnu: Add python-pytest-httpbin
    
    * gnu/packages/web.scm (python-pytest-httpbin, python2-pytest-httbin): New
    variables.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 935f802..efaa1b5 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4523,3 +4523,32 @@ JSON-encoded.")
 
 (define-public python2-httpbin
   (package-with-python2 python-httpbin))
+
+(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)))
+
+(define-public python2-pytest-httpbin
+  (package-with-python2 python-pytest-httpbin))



reply via email to

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