gnu: Add python-asyncodbc.

* gnu/packages/databases.scm (python-asyncodbc): New variable.

Change-Id: Ice6a3a6725d45d022ae5ebcbb8df630caf95e9c6
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-07-23 20:41:21 +02:00 committed by Sharlatan Hellseher
parent e1da1a3216
commit 415217d6d6
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

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