gnu: Add python-hatch-docstring-description.

* gnu/packages/python-build.scm (python-hatch-docstring-description): New variable.

Change-Id: I859fbd0beb3a31c812c818caf0eabc75e55df9b8
This commit is contained in:
Sharlatan Hellseher 2025-08-07 14:55:01 +01:00
parent 80e27d57bf
commit c1aa803542
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")