From 7469e0ed26fedd91cf80f3e69a6b28228d2c35d7 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 20 Mar 2026 14:02:48 -0500 Subject: python-typing-inspection: Add new package definition. --- gn/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gn/packages/python-xyz.scm b/gn/packages/python-xyz.scm index eafb37b..1e85111 100644 --- a/gn/packages/python-xyz.scm +++ b/gn/packages/python-xyz.scm @@ -112,3 +112,25 @@ Annotated.") (synopsis "Function decoration for backoff and retry") (description "Function decoration for backoff and retry.") (license license:expat))) + + +(define-public python-typing-inspection + (package + (name "python-typing-inspection") + (version "0.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pydantic/typing-inspection") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dqib4arxxaxwyapw6y4pcvm38l8djkhd8cfr149w42bw4xrqr38")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-typing-extensions)) + (native-inputs (list python-hatchling)) + (home-page "https://github.com/pydantic/typing-inspection") + (synopsis "Runtime typing introspection tools") + (description "Runtime typing introspection tools.") + (license license:expat))) -- cgit 1.4.1