about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/python-xyz.scm22
1 files changed, 22 insertions, 0 deletions
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)))