rekado pushed a commit to branch master
in repository guix.

commit ba4619f5abe6a2bd1c6e9af06659b23a7a1b0624
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jan 14 11:39:22 2025 +0000

    gnu: python-django-q: Update to 1.3.9.
    
    * gnu/packages/django.scm (python-django-q): Update to 1.3.9. Fix build.
    Adjust indentation.
    [build-system]: Swap to pyproject-build-system.
    [native-inputs]: Add python-setuptools and python-wheel.
    
    Change-Id: Ia633b4420ecf3915566e6c3d984496afc9fd3130
---
 gnu/packages/django.scm | 27 +++++++++++++++++----------
 1 file changed, 17 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 20c4096841..95c4c18ba7 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1097,18 +1097,25 @@ settings.py and easily use them in your project.")
 (define-public python-django-q
   (package
     (name "python-django-q")
-    (version "1.3.4")
+    (version "1.3.9")
     (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "django-q" version))
-        (sha256
-         (base32 "03z1pf6wlf47i7afr79a8fiiidfk1vq19yaqnv0m4qdny7f58gaj"))))
-    (build-system python-build-system)
-    ;; FIXME: Tests require disque, Redis, MongoDB, Docker.
-    (arguments '(#:tests? #f))
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "django-q" version))
+       (sha256
+        (base32 "06x9l2j54km0nww71dv22ndgiax23kd7cwx5dafbzam3199lsssw"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      ;; FIXME: Tests require disque, Redis, MongoDB, Docker.
+      #:tests? #f))
+    (native-inputs
+     (list python-setuptools
+           python-wheel))
     (propagated-inputs
-     (list python-arrow python-blessed python-django
+     (list python-arrow
+           python-blessed
+           python-django
            python-django-picklefield))
     (home-page "https://django-q.readthedocs.io/";)
     (synopsis "Multiprocessing distributed task queue for Django")

Reply via email to