blob: 936de2b2e3f6fecdc8c6cf74d710119de8f6ea7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Real-time monitor and web admin for Celery distributed task queue"
HOMEPAGE="
https://github.com/mher/flower
https://pypi.org/project/flower/
"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/celery-5.0.5[${PYTHON_USEDEP}]
>=dev-python/tornado-5.0.0[${PYTHON_USEDEP}]
<dev-python/tornado-7.0.0[${PYTHON_USEDEP}]
dev-python/humanize[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
distutils_enable_tests unittest
|