gnu: python-django-q: Update to 1.3.3.
* gnu/packages/django.scm (python-django-q): Update to 1.3.3. [arguments]: Add #:tests?. Remove #:phases. [native-inputs]: Remove.
This commit is contained in:
parent
da6448cda5
commit
27f32604d4
1 changed files with 4 additions and 13 deletions
|
|
@ -950,31 +950,22 @@ settings.py and easily use them in your project.")
|
||||||
(define-public python-django-q
|
(define-public python-django-q
|
||||||
(package
|
(package
|
||||||
(name "python-django-q")
|
(name "python-django-q")
|
||||||
(version "1.3.2")
|
(version "1.3.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "django-q" version))
|
(uri (pypi-uri "django-q" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ac3rjxv37bn97a62ly8b7qvbv765z6paiinzpwxx83nal2icc42"))))
|
"1fs29767940akbsn3vdzw2rqnn9v77b0b55bi7fvydny1rk7fw6y"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
;; FIXME: Tests require disque, Redis, MongoDB, Docker.
|
||||||
'(#:phases
|
(arguments '(#:tests? #f))
|
||||||
(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda _
|
|
||||||
(setenv "DJANGO_SETTINGS_MODULE" "django_q.tests.settings")
|
|
||||||
(invoke "django-admin" "test" "django_q.tests"
|
|
||||||
"--pythonpath=."))))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-arrow" ,python-arrow)
|
`(("python-arrow" ,python-arrow)
|
||||||
("python-blessed" ,python-blessed)
|
("python-blessed" ,python-blessed)
|
||||||
("python-django" ,python-django)
|
("python-django" ,python-django)
|
||||||
("python-django-picklefield" ,python-django-picklefield)))
|
("python-django-picklefield" ,python-django-picklefield)))
|
||||||
(native-inputs
|
|
||||||
`(("python-django-redis" ,python-django-redis)
|
|
||||||
("python-pytest-django" ,python-pytest-django)))
|
|
||||||
(home-page "https://django-q.readthedocs.io/")
|
(home-page "https://django-q.readthedocs.io/")
|
||||||
(synopsis "Multiprocessing distributed task queue for Django")
|
(synopsis "Multiprocessing distributed task queue for Django")
|
||||||
(description
|
(description
|
||||||
|
|
|
||||||
Reference in a new issue