gnu: Add python-pytest-xprocess.
* gnu/packages/python.scm (python-pytest-xprocess): New variable.
This commit is contained in:
parent
28cecbb7cc
commit
89b8a5516f
1 changed files with 21 additions and 0 deletions
|
@ -6907,3 +6907,24 @@ (define-public python-wsgi-intercept
|
|||
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)))
|
||||
|
|
Loading…
Reference in a new issue