mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="An open source Flask extension that provides JWT support"
|
|
HOMEPAGE="https://github.com/vimalloc/flask-jwt-extended"
|
|
SRC_URI="https://github.com/vimalloc/flask-jwt-extended/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="examples test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
<dev-python/flask-4.0.0[${PYTHON_USEDEP}]
|
|
<dev-python/pyjwt-3.0.0[${PYTHON_USEDEP}]
|
|
>=dev-python/flask-2.0.0[${PYTHON_USEDEP}]
|
|
>=dev-python/pyjwt-2.0.0[${PYTHON_USEDEP}]
|
|
>=dev-python/werkzeug-0.14[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
test? (
|
|
dev-python/cryptography[${PYTHON_USEDEP}]
|
|
dev-python/python-dateutil[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
python_install_all() {
|
|
if use examples; then
|
|
dodoc -r examples
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
fi
|
|
distutils-r1_python_install_all
|
|
}
|
|
|
|
distutils_enable_sphinx docs dev-python/pallets-sphinx-themes
|
|
distutils_enable_tests pytest
|