Package Details: python-flower 2.0.0-1

Git Clone URL: https://aur.archlinux.org/python-flower.git (read-only, click to copy)
Package Base: python-flower
Description: Real-time monitor and web admin for Celery distributed task queue
Upstream URL: https://github.com/mher/flower
Licenses: BSD
Submitter: a.kudelin
Maintainer: a.kudelin
Last Packager: a.kudelin
Votes: 1
Popularity: 0.000000
First Submitted: 2022-06-10 18:38 (UTC)
Last Updated: 2023-06-29 16:50 (UTC)

Latest Comments

SergeantBiggs commented on 2024-11-12 18:40 (UTC)

I'm getting an error during the test stage when building in a clean chroot:

______________ ERROR collecting tests/unit/views/test_workers.py _______________
ImportError while importing test module '/build/python-flower/src/flower-2.0.0/tests/unit/views/test_workers.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib/python3.12/importlib/__init__.py:90: in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
tests/unit/__init__.py:9: in <module>
    from flower import command  # noqa: F401 side effect - define options
flower/command.py:15: in <module>
    from celery.bin.base import CeleryCommand
/usr/lib/python3.12/site-packages/celery/bin/base.py:14: in <module>
    from celery.signals import user_preload_options
/usr/lib/python3.12/site-packages/celery/signals.py:14: in <module>
    from .utils.dispatch import Signal
/usr/lib/python3.12/site-packages/celery/utils/dispatch/__init__.py:2: in <module>
    from .signal import Signal
/usr/lib/python3.12/site-packages/celery/utils/dispatch/signal.py:14: in <module>
    from celery.utils.time import humanize_seconds
/usr/lib/python3.12/site-packages/celery/utils/time.py:16: in <module>
    from dateutil import tz as dateutil_tz
E   ModuleNotFoundError: No module named 'dateutil'

It seems that the tests require python-dateutil to be included. Could you add it? Thanks!