diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-14 14:29:50 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:55 +0100 |
commit | e5a67a42a80f68f11faf3368565034c3655532c7 (patch) | |
tree | c871d40a463ce97a77449ae172255351f60bf7db | |
parent | 7bcc581fdaa20ba2e143df23d69298a5b25b4d61 (diff) |
gnu: python-django-q2: Add missing inputs.
* gnu/packages/django.scm (python-django-q2)[propagated-inputs]: Add
python-blessed, python-boto3, python-croniter, python-django-q-rollbar,
python-django-q-sentry, python-django-redis, python-hiredis,
python-importlib-metadata, python-iron-mq, python-psutil, python-pymongo,
python-redis, and python-setproctitle.
[native-inputs]: Add python-pytest.
Change-Id: If0bfa8d218a5230c739d535feed107e716e88983
-rw-r--r-- | gnu/packages/django.scm | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index a2cc3a173c..eaa6b7eee9 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -1136,15 +1136,24 @@ using Python multiprocessing.") (sha256 (base32 "0zd1zpi5d3ky26i9rv0aii6kkb6gwvpypnwmsjbmpxiwawhv242j")))) (build-system pyproject-build-system) - (arguments - (list - ;; FIXME: Tests require disque, Redis, MongoDB, Docker. - #:tests? #f)) - (native-inputs - (list python-poetry-core)) - (propagated-inputs - (list python-django - python-django-picklefield)) + ;; XXX: I just don't know how to correctly run the tests. + (arguments (list #:tests? #false)) + (native-inputs (list python-poetry-core python-pytest)) + (propagated-inputs (list python-blessed + python-boto3 + python-croniter + python-django + python-django-picklefield + python-django-q-rollbar + python-django-q-sentry + python-django-redis + python-hiredis + python-importlib-metadata + python-iron-mq + python-psutil + python-pymongo + python-redis + python-setproctitle)) (home-page "https://django-q2.readthedocs.org") (synopsis "Multiprocessing distributed task queue for Django") (description |