mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
e1da1a3216
commit
415217d6d6
1 changed files with 28 additions and 0 deletions
|
@ -3710,6 +3710,34 @@ reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core
|
||||||
protocol with Cython for performance.")
|
protocol with Cython for performance.")
|
||||||
(license license:asl2.0)))
|
(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
|
(define-public python-aiomysql
|
||||||
(package
|
(package
|
||||||
(name "python-aiomysql")
|
(name "python-aiomysql")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue