guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 415217d6d6621e0880505d981d337ca60482bc7c
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jul 23 20:41:21 2025 +0200

    gnu: Add python-asyncodbc.
    
    * gnu/packages/databases.scm (python-asyncodbc): New variable.
    
    Change-Id: Ice6a3a6725d45d022ae5ebcbb8df630caf95e9c6
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/databases.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 5deb363095..975b4dd140 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3710,6 +3710,34 @@ reuses most of @code{pymysql} and @code{aiomysql} but 
rewrites the core
 protocol with Cython for performance.")
     (license license:asl2.0)))
 
+(define-public python-asyncodbc
+  (package
+    (name "python-asyncodbc")
+    (version "0.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/tortoise/asyncodbc";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0fdcvx2r09vsxx3zw8zvj7ww6wyby8sk3r2a3174nfngiajbi6g1"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f))        ;tests fail similarly to python-pyodbc
+    (native-inputs
+     (list python-poetry-core
+           unixodbc))
+    (propagated-inputs
+     (list python-pyodbc))
+    (home-page "https://github.com/tortoise/asyncodbc";)
+    (synopsis "Access ODBC databases with asyncio")
+    (description "This package provides an improved fork of
+@code{python-aioodbc}, and makes it possible to Access ODBC databases with
+@code{python-asyncio}.")
+    (license license:asl2.0)))
+
 (define-public python-aiomysql
   (package
     (name "python-aiomysql")

Reply via email to