34 lines
929 B
Bash
34 lines
929 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Python social authentication made simple."
|
|
HOMEPAGE="https://github.com/python-social-auth/social-core https://pypi.org/project/social-auth-core/"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DOCS="README.md"
|
|
|
|
RDEPEND=">=dev-python/requests-2.9.1[${PYTHON_USEDEP}]
|
|
>=dev-python/oauthlib-1.0.3[${PYTHON_USEDEP}]
|
|
>=dev-python/requests-oauthlib-0.6.1[${PYTHON_USEDEP}]
|
|
>=dev-python/pyjwt-2.7.0[${PYTHON_USEDEP}]
|
|
>=dev-python/defusedxml-0.5.0[${PYTHON_USEDEP}]
|
|
>=dev-python/python3-openid-3.0.10[${PYTHON_USEDEP}]
|
|
>=dev-python/cryptography-2.1.1[${PYTHON_USEDEP}]"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/pytest[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
distutils_enable_tests pytest
|