# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) inherit distutils-r1 DESCRIPTION="A thin Python-based library for the Spotify Web API" HOMEPAGE="https://pypi.python.org/pypi/spotipy https://github.com/plamere/spotipy" if [[ ${PV} == *9999* ]];then inherit git-r3 SRC_URI="" EGIT_REPO_URI="https://github.com/plamere/spotipy" KEYWORDS="" else SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi LICENSE="MIT" SLOT="0" IUSE="" DEPEND=" ${PYTHON_DEPS} dev-python/requests[${PYTHON_USEDEP}] " RDEPEND="${DEPEND}"