diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-23 20:49:39 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-27 00:25:49 +0100 |
commit | 0c622497a6712fa06817b183f9379e47346a46d5 (patch) | |
tree | e35ec1eef136e4c9303f15cb25297ce65873c52b | |
parent | 415217d6d6621e0880505d981d337ca60482bc7c (diff) |
gnu: python-pypika-tortoise: Update to 0.3.2.
* gnu/packages/databases.scm (python-pypika-tortoise): Update to 0.3.2.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-setuptools. Replace poetry by
python-poetry-core. Add python-pytest.
Change-Id: I0e58bd4ed5d5b9317f1273de19aec17ef8d86fc5
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/databases.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 975b4dd140..8cca32bb2d 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3626,16 +3626,19 @@ can autogenerate peewee models using @code{pwiz}, a model generator.") (define-public python-pypika-tortoise (package (name "python-pypika-tortoise") - (version "0.1.6") + (version "0.3.2") (source (origin - (method url-fetch) - (uri (pypi-uri "pypika-tortoise" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/tortoise/pypika-tortoise") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "0dmzpsnlqjjz0vm0r9xjk69xfsm235bpnk3jccr8ww4s8y7qc0nq")))) + (base32 "1pz7i9vgjwzzvacjjkvr5xbcmphn52xv993zbks602is844k0pp0")))) (build-system pyproject-build-system) (native-inputs - (list poetry python-setuptools)) + (list python-poetry-core python-pytest)) (home-page "https://github.com/tortoise/pypika-tortoise") (synopsis "Pypika fork for tortoise-orm") (description "Pypika-tortoise is a fork of pypika which has been |