diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-26 22:12:00 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-26 22:12:42 +0100 |
commit | 60a7b3af4d2cb44db182dc631eb27b1e288f3da4 (patch) | |
tree | 231202aea8b2c4144590639739bf9d812276970a /gnu/packages/python-xyz.scm | |
parent | 29069663fd03b562c80ea64adec96748aa6f4929 (diff) |
gnu: python-pdoc3: Update to 0.11.6.
* gnu/packages/python-xyz.scm (python-pdoc3): Update to 0.11.6.
[build-system]: Switch to pyproject.
[native-inputs]: Add python-setuptools and python-wheel.
* gnu/packages/patches/python-pdoc3-tests.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Deregester python-pdoc3-tests.patch.
Change-Id: I1cffb6272d5de4ca7037aa761c36002bd0d03318
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 92d1999376..c63a0a7708 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -38062,19 +38062,22 @@ keyboard-friendly package.") (define-public python-pdoc3 (package (name "python-pdoc3") - (version "0.10.0") + (version "0.11.6") (source (origin (method url-fetch) (uri (pypi-uri "pdoc3" version)) (sha256 - (base32 "1dz4hw10ngidzg9cjvflc8nlrwrjbb3ijhmaw4w6f039p6yff8jz")) - (patches - (search-patches "python-pdoc3-tests.patch")))) - (build-system python-build-system) + (base32 "11z318lnvd7nxkpw2556hh6hvid6gi8mxgv4zf8x2m57hx5yi98y")))) + (build-system pyproject-build-system) (native-inputs - (list python-setuptools-git python-setuptools-scm)) - (propagated-inputs (list python-mako python-markdown)) + (list python-setuptools-git + python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs + (list python-mako + python-markdown)) (home-page "https://pdoc3.github.io/pdoc/") (synopsis "Auto-generate API documentation for Python projects") (description |