diff options
author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2025-09-23 21:39:45 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-28 00:43:28 +0100 |
commit | 6b48bd14dfca14c265e1747bfcff121ec8f5b6b1 (patch) | |
tree | 0e98303c92c6c130ea038746d34ebff5660cda02 | |
parent | 622f2105ebb2c64764ae373d553fd2660d6b6936 (diff) |
gnu: Add python-types-aiofiles.
* gnu/packages/python-xyz.scm (python-types-aiofiles): New variable.
Change-Id: I7f21b80b47f1c0a71812623c574a6892a9782af0
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-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 2f6ed897d8..a5bbb9bc67 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -38009,6 +38009,24 @@ static types.") (description "This package providis typing stubs for python-dateutil.") (license license:asl2.0))) +(define-public python-types-aiofiles + (package + (name "python-types-aiofiles") + (version "24.1.0.20250822") + (source + (origin + (method url-fetch) + (uri (pypi-uri "types_aiofiles" version)) + (sha256 + (base32 "0ysar1an6il2rsd54fwzwdis209z3qq3i4zhgixfjzrh1j70vfcs")))) + (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 python-aiofiles") + (description "This package providis typing stubs for python-aiofiles.") + (license license:asl2.0))) + (define-public python-types-docutils (package (name "python-types-docutils") |