about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-03-20 12:42:54 -0500
committerFrederick Muriuki Muriithi2026-03-23 11:02:49 -0500
commitd1c527e6142f1855b894b9c95625ed1b4365ca8c (patch)
treedf719de0fe508485bb0323053b61356950b098bc
parentd3d8df30de58c4916ef009bd3fded4a717aa2291 (diff)
downloadai-tools-d1c527e6142f1855b894b9c95625ed1b4365ca8c.tar.gz
python-annotated-doc: Add new package definition.
-rw-r--r--gn/packages/python-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/python-xyz.scm b/gn/packages/python-xyz.scm
index b80e6a1..619f185 100644
--- a/gn/packages/python-xyz.scm
+++ b/gn/packages/python-xyz.scm
@@ -62,3 +62,27 @@
     (synopsis "OS-independent wrapper for shlex and mslex")
     (description "OS-independent wrapper for shlex and mslex.")
     (license license:expat)))
+
+
+(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-pdm-backend))
+    (home-page "https://github.com/fastapi/annotated-doc")
+    (synopsis
+     "Document parameters, class attributes, return types, and variables inline, with Annotated.")
+    (description
+     "Document parameters, class attributes, return types, and variables inline, with
+Annotated.")
+    (license license:expat)))