diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-03 22:24:59 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-03 23:12:28 +0100 |
| commit | 4a1fd34e0e721cffee26a22a9c54d352301328bc (patch) | |
| tree | f68f41759fd5a2e91f5c3253ed833e81e9467172 /gnu/packages/python-xyz.scm | |
| parent | e6be560b495c698a1f2a44ac22ac7d8978c2b1d8 (diff) | |
gnu: Add python-hatch-argparse-manpage.
* gnu/packages/python-xyz.scm (python-hatch-argparse-manpage): New variable.
Change-Id: I339b3ec8325934115597ac0e3293c6adf20a78a4
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3574c9424e..1c81d12a15 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1028,6 +1028,27 @@ for working with grapheme cluster groups (graphemes) as defined by the It also supports IPython/Jupyter.") (license license:expat))) +(define-public python-hatch-argparse-manpage + (package + (name "python-hatch-argparse-manpage") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "hatch_argparse_manpage" version)) + (sha256 + (base32 "1zbbww9akz1lca3br67zik80ql774xpfg22njxdxjiw4kpz5alb6")))) + (build-system pyproject-build-system) + (native-inputs (list python-hatchling)) + (propagated-inputs (list python-argparse-manpage python-rich)) + (home-page "https://github.com/damonlynch/hatch-argparse-manpage") + (synopsis "Hatch build hook plugin to generate manual pages") + (description + "This package provides a build hook plugin for Hatch to automatically + bs generate a manual page from an ArgumentParser object, using argparse-manpage +by Pavel Raiskup.") + (license license:gpl3+))) + ;; TODO: Move to ci or task-runners, see: ;; <https://codeberg.org/guix/guix/issues/3096>. (define-public python-huey |
