[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/13: gnu: Add aerich.
From: |
guix-commits |
Subject: |
04/13: gnu: Add aerich. |
Date: |
Mon, 30 Oct 2023 07:19:53 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit db5c83e83bb0aa7b65e020ee1d8749e11d5c8f6f
Author: Giacomo Leidi <goodoldpaul@autistici.org>
AuthorDate: Sun Oct 29 13:07:24 2023 +0100
gnu: Add aerich.
* gnu/packages/databases.scm (aerich): New variable.
Change-Id: I322d619dc80c943d50e28a96ba74d276784ab8da
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/databases.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 4bc642aa17..3eeee9fadf 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -61,6 +61,7 @@
;;; Copyright © 2021, 2022 jgart <jgart@dismail.de>
;;; Copyright © 2023 Felix Gruber <felgru@posteo.ne
;;; Copyright © 2023 Munyoki Kilyungi <me@bonfacemunyoki.com>
+;;; Copyright © 2023 Giacomo Leidi <goodoldpaul@autistici.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3113,6 +3114,48 @@ engraved in its design that you are working not with
just tables, you work
with relational data.")
(license license:asl2.0)))
+(define-public aerich
+ (package
+ (name "aerich")
+ (version "0.7.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tortoise/aerich")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0pcy945bg890p12s7cyw0mg7hxwsxyy570j600sbf7kwj2d3lilg"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list poetry
+ python-bandit
+ python-cryptography
+ python-isort
+ python-pydantic
+ python-pytest
+ python-pytest-asyncio
+ python-pytest-mock
+ python-pytest-xdist))
+ (propagated-inputs
+ (list python-asyncmy
+ python-asyncpg
+ python-click
+ python-ddlparse
+ python-dictdiffer
+ python-tomlkit
+ python-tortoise-orm))
+ (home-page "https://github.com/tortoise/aerich")
+ (synopsis "Database migrations tool for Tortoise @acronym{ORM, Object
Relational
+Mapper}")
+ (description
+ "This package provides @code{aerich}, a Python database migrations tool
+for Tortoise @acronym{ORM, Object Relational Mapper}. It can be used both
+programmatically or as a standalone CLI application.")
+ (license license:asl2.0)))
+
(define-public sqlcipher
(package
(name "sqlcipher")
- branch master updated (5d79012073 -> 5746d043a6), guix-commits, 2023/10/30
- 02/13: gnu: Add ffmpeg-normalize., guix-commits, 2023/10/30
- 05/13: gnu: Add python-online-judge-api-client., guix-commits, 2023/10/30
- 04/13: gnu: Add aerich.,
guix-commits <=
- 03/13: gnu: Add python-ddlparse., guix-commits, 2023/10/30
- 01/13: gnu: Add ffmpeg-progress-yield., guix-commits, 2023/10/30
- 09/13: gnu: Remove python-resolvelib@0.5., guix-commits, 2023/10/30
- 06/13: gnu: Add online-judge-tools., guix-commits, 2023/10/30
- 07/13: gnu: Add r-consort., guix-commits, 2023/10/30
- 08/13: gnu: ansible-core: Update to 2.15.5 and fix tests., guix-commits, 2023/10/30
- 11/13: gnu: labwc: Update to 0.6.5., guix-commits, 2023/10/30
- 12/13: gnu: cockatrice: Update to 2.9.0., guix-commits, 2023/10/30
- 10/13: gnu: ansible: Update to 8.5.0., guix-commits, 2023/10/30
- 13/13: gnu: transmission: Update to 4.0.4., guix-commits, 2023/10/30