diff options
| author | Frederick Muriuki Muriithi | 2026-03-20 14:02:48 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-03-23 11:03:05 -0500 |
| commit | 88ef3e83d71008ff8e4848a9a5f626b0706e6297 (patch) | |
| tree | d2851cbe46b4d0ade0875e1c76e0f52d4cc56295 | |
| parent | 3159d37fb322d524c6988f8ec4369f38b32439ef (diff) | |
| download | ai-tools-88ef3e83d71008ff8e4848a9a5f626b0706e6297.tar.gz | |
python-typing-inspection: Add new package definition.
| -rw-r--r-- | gn/packages/python-xyz.scm | 22 |
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))) |
