guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: Add python-tortoise-orm.


From: guix-commits
Subject: 05/05: gnu: Add python-tortoise-orm.
Date: Mon, 30 Mar 2020 14:50:57 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 1110a421f4c9ede6ee814e678135a1dd2ac05fc9
Author: Lars-Dominik Braun <address@hidden>
AuthorDate: Mon Mar 30 08:41:12 2020 +0200

    gnu: Add python-tortoise-orm.
    
    * gnu/packages/databases.scm (python-tortoise-orm): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/databases.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index fcc8eec..f760c69 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2206,6 +2206,41 @@ can autogenerate peewee models using @code{pwiz}, a 
model generator.")
 (define-public python2-peewee
   (package-with-python2 python-peewee))
 
+(define-public python-tortoise-orm
+  (package
+    (name "python-tortoise-orm")
+    (version "0.16.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "tortoise-orm" version))
+       (sha256
+        (base32
+         "01hbvfyxs2qd1mjc96aipwsdxxhydw8ww686r4gsf87bl6f98dvz"))))
+    (build-system python-build-system)
+    ;; Disable tests for now. They pull in a lot of dependencies.
+    (arguments `(#:tests? #f))
+    (native-inputs
+     `(("python-ciso8601" ,python-ciso8601)
+       ("python-asynctest" ,python-asynctest)
+       ("python-nose2" ,python-nose2)))
+    (propagated-inputs
+     `(("python-aiosqlite" ,python-aiosqlite)
+       ("python-pypika" ,python-pypika)
+       ("python-typing-extensions"
+        ,python-typing-extensions)))
+    (home-page
+     "https://github.com/tortoise/tortoise-orm";)
+    (synopsis
+     "Easy async ORM for python, built with relations in mind")
+    (description
+     "Tortoise ORM is an easy-to-use asyncio ORM (Object Relational Mapper)
+inspired by Django.  Tortoise ORM was build with relations in mind and
+admiration for the excellent and popular Django ORM.  It’s engraved in its
+design that you are working not with just tables, you work with relational
+data.")
+    (license license:asl2.0)))
+
 (define-public sqlcipher
   (package
     (name "sqlcipher")



reply via email to

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