guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0c622497a6712fa06817b183f9379e47346a46d5
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jul 23 20:49:39 2025 +0200

    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 <[email protected]>
---
 gnu/packages/databases.scm | 13 ++++++++-----
 1 file 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

Reply via email to