mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-12 16:43:17 -04:00
Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{7,8,9} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A light weight Python library for the Spotify Web API"
|
|
HOMEPAGE="https://spotipy.readthedocs.io
|
|
https://github.com/plamere/spotipy"
|
|
SRC_URI="https://github.com/plamere/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
IUSE="examples"
|
|
|
|
LICENSE="MIT"
|
|
KEYWORDS="~amd64 ~x86 "
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
dev-python/six[${PYTHON_USEDEP}]
|
|
dev-python/urllib3[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )"
|
|
|
|
distutils_enable_sphinx docs
|
|
distutils_enable_tests pytest
|
|
|
|
python_prepare_all() {
|
|
# this test requires user credentials
|
|
rm tests/integration/test_user_endpoints.py || die
|
|
|
|
# this test requires a spotify client ID
|
|
rm tests/integration/test_non_user_endpoints.py || die
|
|
|
|
# need internet access
|
|
sed -i -e 's:test_spotify_client_credentials_get_access_token:_&:' \
|
|
tests/unit/test_oauth.py || die
|
|
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
python_test() {
|
|
pytest -vv tests || die "Tests fail with ${EPYTHON}"
|
|
}
|
|
|
|
python_install_all() {
|
|
use examples && dodoc -r examples
|
|
|
|
distutils-r1_python_install_all
|
|
}
|