about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-03-20 14:02:48 -0500
committerFrederick Muriuki Muriithi2026-03-20 17:23:07 -0500
commit7469e0ed26fedd91cf80f3e69a6b28228d2c35d7 (patch)
treeebf965f897ef3f77300785a006616822178d668d
parent25348dbbf8d2f3ef70a61dab4c5d0304301d5db4 (diff)
downloadguix-bioinformatics-7469e0ed26fedd91cf80f3e69a6b28228d2c35d7.tar.gz
python-typing-inspection: Add new package definition.
-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)))