From 0f86974f08c64e48be7e3e0ee6a1f269703ea676 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 7 Dec 2025 12:48:31 +0000 Subject: [PATCH] gnu: Add python-annotated-doc. * gnu/packages/python-xyz.scm (python-annotated-doc): New variable. Change-Id: Iff2bb3c690d9260d543e268210286c2591e67c84 Signed-off-by: Rutherther --- 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 52b21a9cdfe93a48041b94163f35bafe38cb1713..6f5473345d707e242753b9743910ae70a4086a3c 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")