mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add python-pytest-warnings.
* gnu/packages/python.scm (python-pytest-warnings, python2-pytest-warnings): New variables.
This commit is contained in:
parent
047160f2f1
commit
59a972885c
1 changed files with 24 additions and 0 deletions
|
@ -14141,3 +14141,27 @@ (define-public python-mwclient
|
|||
|
||||
(define-public python2-mwclient
|
||||
(package-with-python2 python-mwclient))
|
||||
|
||||
(define-public python-pytest-warnings
|
||||
(package
|
||||
(name "python-pytest-warnings")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pytest-warnings" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0gf2dpahpl5igb7jh1sr9acj3z3gp7zahqdqb69nk6wx01c8kc1g"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("pytest" ,python-pytest-3.0)))
|
||||
(home-page "https://github.com/fschulze/pytest-warnings")
|
||||
(synopsis "Pytest plugin to list Python warnings in pytest report")
|
||||
(description
|
||||
"Python-pytest-warnings is a pytest plugin to list Python warnings in
|
||||
pytest report.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python2-pytest-warnings
|
||||
(package-with-python2 python-pytest-warnings))
|
||||
|
|
Loading…
Reference in a new issue