HomeAssistantRepository/dev-python/xbox-webapi/xbox-webapi-2.0.11.ebuild
Andreas Billmeier (@Home/mbp) 17c2d6661f
dev-python/xbox-webapi: update SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
2023-11-02 23:33:50 +01:00

41 lines
952 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="A library to authenticate with Windows Live/Xbox Live and use their API"
HOMEPAGE="https://github.com/OpenXbox/xbox-webapi-python https://pypi.org/project/xbox-webapi/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/appdirs[${PYTHON_USEDEP}]
dev-python/ms-cv[${PYTHON_USEDEP}]
dev-python/pydantic[${PYTHON_USEDEP}]
dev-python/ecdsa[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
python_install_all() {
distutils-r1_python_install_all
find "${ED}" -name '*.pth' -delete || die
}