summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-07 12:48:31 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:18:25 +0100
commit0f86974f08c64e48be7e3e0ee6a1f269703ea676 (patch)
tree2a3a2b9b3cbcb0f9dcc33ddbda1f7df5e68f2753 /gnu/packages/python-xyz.scm
parent8f13bd0dcac33f7a6520379ded700c3bc939da38 (diff)
gnu: Add python-annotated-doc.
* gnu/packages/python-xyz.scm (python-annotated-doc): New variable. Change-Id: Iff2bb3c690d9260d543e268210286c2591e67c84 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 52b21a9cdfe..6f5473345d7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -392,6 +392,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")