diff options
author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2025-09-23 20:49:40 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-28 00:43:28 +0100 |
commit | 622f2105ebb2c64764ae373d553fd2660d6b6936 (patch) | |
tree | da985029fa902fe971ce933ebbae4d3e637d31bb /gnu/packages/python-xyz.scm | |
parent | 60027b1c0fd87ad35edfa82bee847c78f3f46733 (diff) |
gnu: Add python-types-regex.
* gnu/packages/python-xyz.scm (python-types-regex): New variable.
Change-Id: Ie526b19c84c08c7778d41bc12619b4d2e8f0dd8b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6737fe7a5a..2f6ed897d8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39837,6 +39837,24 @@ package. It can be used by type-checking tools like mypy, PyCharm, pytype etc. to check code that uses @code{orjson}.") (license license:asl2.0))) +(define-public python-types-regex + (package + (name "python-types-regex") + (version "2025.9.18.20250921") + (source + (origin + (method url-fetch) + (uri (pypi-uri "types_regex" version)) + (sha256 + (base32 "0gqc8b9d38pdm1l6nryi9rq9vmpis575hqnxlvj904n3n4hhqw71")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests in PyPI archive + (native-inputs (list python-setuptools)) + (home-page "https://github.com/python/typeshed") + (synopsis "Typing stubs for regex") + (description "This package provides typing stubs for regex.") + (license license:asl2.0))) + (define-public python-rpds-py (package (name "python-rpds-py") |