diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-07 14:55:01 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-07 18:33:38 +0100 |
| commit | c1aa803542eb946387be6e8405189565e870f1ea (patch) | |
| tree | 3bde17acb239458812ca38bcf34c66eb8ab729ce /gnu/packages/python-build.scm | |
| parent | 80e27d57bf64311ea7b510889871811156ee63a4 (diff) | |
gnu: Add python-hatch-docstring-description.
* gnu/packages/python-build.scm (python-hatch-docstring-description): New variable.
Change-Id: I859fbd0beb3a31c812c818caf0eabc75e55df9b8
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 8e189c05dc6..b5ad5e75191 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -828,6 +828,30 @@ has features such as: @end itemize") (license license:expat))) +(define-public python-hatch-docstring-description + (package + (name "python-hatch-docstring-description") + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "hatch_docstring_description" version)) + (sha256 + (base32 "1qwa8m4yswn0bkc5xzq30xsaca578axl5ig2r6mkcdxsfg196pdi")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;avoid extra test dependencies + (native-inputs + (list python-hatch-vcs + python-hatchling)) + (propagated-inputs + (list python-hatchling)) + (home-page "https://github.com/flying-sheep/hatch-docstring-description") + (synopsis "Derive PyPI package description from Python package docstring ") + (description + "This package provides a Hatchling plugin to read the description from the +package docstring.") + (license license:gpl3+))) + (define-public python-hatch-fancy-pypi-readme (package (name "python-hatch-fancy-pypi-readme") |
