From 17271ead9eb0e4448dbb00e5cd67b0a7c6995c1a Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 20 Mar 2026 12:42:54 -0500 Subject: python-annotated-doc: Add new package definition. --- gn/packages/python-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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))) -- cgit 1.4.1