mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: python-tortoise-orm: Update to 0.20.0.
* gnu/packages/databases.scm (python-tortoise-orm): Update to 0.20.0; [source]: switch to git-fetched origin; [build-system]: switch to pyproject-build-system; [native-inputs]: add poetry. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
1566c9cae1
commit
4d748d344b
1 changed files with 10 additions and 5 deletions
|
@ -3077,17 +3077,22 @@ (define-public python-aiomysql
|
|||
(define-public python-tortoise-orm
|
||||
(package
|
||||
(name "python-tortoise-orm")
|
||||
(version "0.19.1")
|
||||
(version "0.20.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "tortoise-orm" version))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tortoise/tortoise-orm")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "17yk71dlx5ai98i6ivqgsplkwivdxackz9jfn6z42bpcdgbpiwhg"))))
|
||||
(build-system python-build-system)
|
||||
(base32 "19rgyvs2y9gn27x71y7djdz6rb6bszgvprv55q1hr4266wy6g999"))))
|
||||
(build-system pyproject-build-system)
|
||||
;; The test suite relies on asynctest, which is abandoned and doesn't
|
||||
;; support Python >= 3.8.
|
||||
(arguments '(#:tests? #f))
|
||||
(native-inputs
|
||||
(list poetry))
|
||||
(propagated-inputs
|
||||
(list python-aiomysql
|
||||
python-aiosqlite-0.17
|
||||
|
|
Loading…
Reference in a new issue