gnu: python-django-rq: Update to 2.7.0.

* gnu/packages/django.scm (python-django-rq): Update to 2.7.0.
[arguments]: Replace django-admin.py with django-admin in check phase.
This commit is contained in:
Maxim Cournoyer 2023-03-20 08:28:50 -04:00
parent 10d5535c78
commit 008a2f1803
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -870,13 +870,13 @@ (define-public python-django-redis
(define-public python-django-rq (define-public python-django-rq
(package (package
(name "python-django-rq") (name "python-django-rq")
(version "2.3.2") (version "2.7.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "django-rq" version)) (uri (pypi-uri "django-rq" version))
(sha256 (sha256
(base32 (base32
"0lksnjn3q3f7y72bj2yr8870w28a5b6x0vjnd9nhpq2ah6xfz6pf")))) "0aw0fi0lg80qgdp9fhjbnlhvfh2p09rgy1nj6hxpyhi37kihni2h"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -884,7 +884,7 @@ (define-public python-django-rq
(replace 'check (replace 'check
(lambda _ (lambda _
(invoke "redis-server" "--daemonize" "yes") (invoke "redis-server" "--daemonize" "yes")
(invoke "django-admin.py" "test" "django_rq" (invoke "django-admin" "test" "django_rq"
"--settings=django_rq.tests.settings" "--settings=django_rq.tests.settings"
"--pythonpath=.")))))) "--pythonpath=."))))))
(native-inputs (native-inputs