22 lines
490 B
Bash
22 lines
490 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{9..13} )
|
|
PYPI_NO_NORMALIZE=1
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="An app that provides django integration for RQ (Redis Queue)"
|
|
HOMEPAGE="https://github.com/rq/django-rq/"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
>=dev-python/django-3.2[${PYTHON_USEDEP}]
|
|
>=dev-python/rq-2[${PYTHON_USEDEP}]
|
|
>=dev-python/redis-3.5[${PYTHON_USEDEP}]
|
|
"
|