# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy ) inherit distutils-r1 MY_PN="${PN/_/.}" MY_P="${MY_PN}-${PV}" DESCRIPTION="Alternate keyring implementations" HOMEPAGE="https://github.com/jaraco/keyrings.alt http://pypi.python.org/pypi/keyrings.alt" SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" IUSE="test" RDEPEND="dev-python/six[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] test? ( >=dev-python/fs-0.5[${PYTHON_USEDEP}] =dev-python/pytest-2.8[${PYTHON_USEDEP}] )" S=${WORKDIR}/${MY_P} # Multiple failures RESTRICT=test python_prepare_all() { sed \ -e "s:find_packages():find_packages(exclude=['tests']):g" \ -i setup.py || die distutils-r1_python_prepare_all } python_test() { py.test -v -v || die }