guix-devel
[Top][All Lists]
Advanced

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

[PATCH 10/17] gnu: Add python-pytest-xprocess.


From: Leo Famulari
Subject: [PATCH 10/17] gnu: Add python-pytest-xprocess.
Date: Sun, 3 Jan 2016 19:05:08 -0500

* gnu/packages/python.scm (python-pytest-xprocess): New variable.
---
 gnu/packages/python.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 437b66d..2f7c14e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6821,3 +6821,24 @@ 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)))
+
+(define-public python-pytest-xprocess
+  (package
+    (name "python-pytest-xprocess")
+    (version "0.9.1")
+    (source (origin
+             (method url-fetch)
+             (uri (pypi-uri "pytest-xprocess" version))
+             (sha256
+              (base32
+               "17zlql1xqw3ywcgwwbqmw633aly99lab12hm02asr8awvg5603pp"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-pytest" ,python-pytest)
+       ("python-pytest-cache" ,python-pytest-cache)
+       ("python-psutil" ,python-psutil)))
+    (synopsis "Pytest plugin to manage external processes across test runs")
+    (description "Pytest-xprocess is an experimental py.test plugin for 
managing
+processes across test runs.")
+    (home-page "https://bitbucket.org/pytest-dev/pytest-xprocess";)
+    (license license:expat)))
-- 
2.6.4




reply via email to

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