dev-python/tekore: Bump to 4.6.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2023-04-13 06:55:32 +02:00
parent 666318a7aa
commit 0b18e3538d
2 changed files with 50 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST tekore-4.5.0.gh.tar.gz 265075 BLAKE2B 830a7c006ea13650ecc639bc8277d7022eed29fb92e13d4ff0bd98cb30f9bf2c53c9fb5dc88f3195938c22e12c8cc73a52517629c1db2d7bdc5e80360ea7b8bc SHA512 c69f47611447fec72fe2c4f09689dc93b8ff4dc94d430f213866b349c5867eeefd5351f3707b05648a74bd30576e4fd5d7e0c81203f5c7f90d54710433e25980
DIST tekore-4.6.0.gh.tar.gz 264762 BLAKE2B 5cfff764fcf8f2072cb009a8c5471b4795846f6cee9757c9aea370191f3e3595a22190e939dc9b2bfebe18c07ce011a39c1ecce1abecf4f33a96560ea5071e9e SHA512 9013b5d02c15ad1e99861afe1b78b555f459940e4798738a8861f021659da0f333d71fa8322f056b40b405251af39bf3a820ac5507d735538a9913832c491eeb

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
DESCRIPTION="Spotify Web API client"
HOMEPAGE="
https://tekore.readthedocs.io/
https://github.com/felix-hilden/tekore/
https://pypi.org/project/tekore/
"
SRC_URI="
https://github.com/felix-hilden/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
KEYWORDS="~amd64"
SLOT="0"
RDEPEND="
<dev-python/httpx-0.25[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
>=dev-python/pytest-asyncio-0.17[${PYTHON_USEDEP}]
dev-python/pytest-httpx[${PYTHON_USEDEP}]
)
"
DOCS=( readme.rst )
distutils_enable_tests pytest
# TODO: package sphinx_codeautolink
# distutils_enable_sphinx docs/src \
# dev-python/sphinx-rtd-theme \
# dev-python/sphinx-tabs \
# dev-python/sphinx-autodoc-typehints
EPYTEST_DESELECT=(
# Internet
tests/auth/expiring.py::TestCredentialsOnline::test_bad_arguments_raises_error
)