mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add python-pytest-checkdocs.
* gnu/packages/python-check.scm (python-pytest-checkdocs): New variable.
This commit is contained in:
parent
15b6561769
commit
85bf6798e6
1 changed files with 23 additions and 0 deletions
|
@ -105,3 +105,26 @@ (define-public python-vcrpy
|
||||||
detect the absence of a cassette file and once again record all HTTP
|
detect the absence of a cassette file and once again record all HTTP
|
||||||
interactions, which will update them to correspond to the new API.")
|
interactions, which will update them to correspond to the new API.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pytest-checkdocs
|
||||||
|
(package
|
||||||
|
(name "python-pytest-checkdocs")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-checkdocs" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"07c27cdjcw6jph5kbgpxchrvwlps4ggwb2j6m7y64imnik0asrq8"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-importlib-metadata" ,python-importlib-metadata)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-setuptools-scm" ,python-setuptools-scm)))
|
||||||
|
(home-page "https://github.com/jaraco/pytest-checkdocs")
|
||||||
|
(synopsis "Check the README when running tests")
|
||||||
|
(description
|
||||||
|
"This package provides a pytest plugin that checks the long description
|
||||||
|
of the project to ensure it renders properly.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue