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

* gnu/packages/django.scm (python-django-rq): Update to 1.3.0.
This commit is contained in:
Julien Lepiller 2019-03-04 21:14:28 +01:00
parent f55fe42b36
commit 1396837184
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -675,25 +675,26 @@ (define-public python2-django-redis
(define-public python-django-rq (define-public python-django-rq
(package (package
(name "python-django-rq") (name "python-django-rq")
(version "0.9.4") (version "1.3.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
"04v8ilfdp10bk31fxgh4cn083gsn5m06342cnpm5d10nd8hc0vky")))) "0xh6qa7i779vh58lwwv6yk0wx8bi38mvmpz79grnl2cl8531r928"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'check (replace 'check
(lambda _ (lambda _
(and (zero? (system* "redis-server" "--daemonize" "yes")) (invoke "redis-server" "--daemonize" "yes")
(zero? (system* "django-admin.py" "test" "django_rq" (invoke "django-admin.py" "test" "django_rq"
"--settings=django_rq.test_settings" "--settings=django_rq.tests.settings"
"--pythonpath=")))))))) "--pythonpath="))))))
(native-inputs (native-inputs
`(("redis" ,redis))) `(("python-mock" ,python-mock)
("redis" ,redis)))
(propagated-inputs (propagated-inputs
`(("python-django" ,python-django) `(("python-django" ,python-django)
("python-rq" ,python-rq))) ("python-rq" ,python-rq)))