guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 76790572819478db1c4ca795a72e16e5eb0ffa39
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 7 12:48:31 2025 +0000
gnu: Add python-annotated-doc.
* gnu/packages/python-xyz.scm (python-annotated-doc): New variable.
Change-Id: Iff2bb3c690d9260d543e268210286c2591e67c84
---
gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 15802faaba..407602c237 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -391,6 +391,31 @@ protocol of git-annex, while leaving the behavior of the
remote up to the
user.")
(license license:gpl3)))
+(define-public python-annotated-doc
+ (package
+ (name "python-annotated-doc")
+ (version "0.0.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fastapi/annotated-doc")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "13fh58q1a8kvrx1kjgr6qmd09jhikxc7wlyccajpfz657ipjif9v"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-pdm-backend))
+ (home-page "https://github.com/fastapi/annotated-doc")
+ (synopsis "Annotated for some Python objects")
+ (description
+ "This package implements a funtionality for document parameters, class
+attributes, return types, and variables inline, with
+Annotated.")
+ (license license:expat)))
+
(define-public python-archspec
(package
(name "python-archspec")