guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

209/217: gnu: Add python-asyncmy.


From: guix-commits
Subject: 209/217: gnu: Add python-asyncmy.
Date: Sun, 14 Nov 2021 19:21:29 -0500 (EST)

vagrantc pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.

commit 8546b2d6225e6856005ca8ef944f44267ed4abaf
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Nov 4 21:58:48 2021 -0400

    gnu: Add python-asyncmy.
    
    * gnu/packages/databases.scm (python-asyncmy): New variable.
---
 gnu/packages/databases.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 85b2fad..ff78b42 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2659,6 +2659,25 @@ efficient, clean implementation of PostgreSQL server 
binary protocol for use
 with Python's asyncio framework.")
     (license license:asl2.0)))
 
+(define-public python-asyncmy
+  (package
+    (name "python-asyncmy")
+    (version "0.2.3")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "asyncmy" version))
+        (sha256
+          (base32 "19p81jd4w7m7v2x1jdrwibp67wzqx1a7rdw5n4qqmch3iffp97vn"))))
+    (build-system python-build-system)
+    (native-inputs (list python-cython))
+    (home-page "https://github.com/long2ice/asyncmy";)
+    (synopsis "Fast MySQL driver for Python")
+    (description "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which
+reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core
+protocol with Cython for performance.")
+    (license license:asl2.0)))
+
 (define-public python-tortoise-orm
   (package
     (name "python-tortoise-orm")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]