diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-05 23:28:44 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:45:31 -0400 |
commit | 529318bd22373557c95e74e1ea9c5365c403af19 (patch) | |
tree | 10f3b0e7e68d0bf82ce4e5e3851162ca759ad717 /gnu/packages/python-check.scm | |
parent | bd152b5475fcf4deab65f9374f4a6ec782881c54 (diff) | |
download | guix-529318bd22373557c95e74e1ea9c5365c403af19.tar guix-529318bd22373557c95e74e1ea9c5365c403af19.tar.gz |
gnu: python-pytest-checkdocs: Update to 2.7.1.
* gnu/packages/python-check.scm (python-pytest-checkdocs): Update to 2.7.1.
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r-- | gnu/packages/python-check.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 0a6bf423f0..f44ab0ca9a 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -921,18 +921,21 @@ doctest to render the object representations.") (define-public python-pytest-checkdocs (package (name "python-pytest-checkdocs") - (version "1.2.5") + (version "2.7.1") (source (origin (method url-fetch) (uri (pypi-uri "pytest-checkdocs" version)) (sha256 - (base32 "0m4kn7141i6k8qr8ak3lbmk9vim11xsrlnrggcfwczfrglc6jmia")))) + (base32 "1bn1wr3yz8avkwacffyh26za7mg20f9pajpakfk4cn7yvmgbhcrb")))) (build-system python-build-system) + (arguments (list #:tests? #f)) ;no tests in pypi archive (propagated-inputs - (list python-docutils python-importlib-metadata python-more-itertools)) - (native-inputs - (list python-setuptools-scm python-pytest)) + (list python-docutils + python-importlib-metadata + python-pep517 + python-pytest)) + (native-inputs (list python-setuptools-scm)) (home-page "https://github.com/jaraco/pytest-checkdocs") (synopsis "Check the README when running tests") (description |