guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6b48bd14dfca14c265e1747bfcff121ec8f5b6b1
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Tue Sep 23 21:39:45 2025 +0200

    gnu: Add python-types-aiofiles.
    
    * gnu/packages/python-xyz.scm (python-types-aiofiles): New variable.
    
    Change-Id: I7f21b80b47f1c0a71812623c574a6892a9782af0
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

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")

Reply via email to