blob: 733ae6ea61e684b06f1db335c2c1f6d40000ee9a (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{13..14} )
inherit distutils-r1
DESCRIPTION="FastAPI plugin to enable SSO to most common providers"
HOMEPAGE="
https://github.com/tomasvotava/fastapi-sso
https://pypi.org/project/fastapi-sso/
"
SRC_URI="
https://github.com/tomasvotava/fastapi-sso/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64" # ~arm64: fastapi
# strictly >=pydantic-1.8.0; raised to 2.0.0 for email-validator-2.0.0
RDEPEND="
>=dev-python/email-validator-2.0.0[${PYTHON_USEDEP}]
>=dev-python/fastapi-0.80[${PYTHON_USEDEP}]
>=dev-python/httpx-0.23.0[${PYTHON_USEDEP}]
>=dev-python/oauthlib-3.1.0[${PYTHON_USEDEP}]
>=dev-python/pydantic-2.0.0[${PYTHON_USEDEP}]
>=dev-python/pyjwt-2.10.1[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
>=dev-python/pytest-asyncio-0.24[${PYTHON_USEDEP}]
>=dev-python/uvicorn-0.23.1[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( pytest-asyncio )
distutils_enable_tests pytest
src_prepare() {
distutils-r1_src_prepare
sed -i -e '/--cov/d' pyproject.toml || die
}
|