Andreas Billmeier (@Home/mbp) df5127541d
dev-python/pizzapi: update SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
2023-07-12 19:37:39 +02:00

36 lines
845 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
inherit distutils-r1 pypi
DESCRIPTION="A Python wrapper for the Dominos Pizza API"
HOMEPAGE="https://github.com/aluttik/pizzapi https://pypi.org/project/pizzapi/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/pyhamcrest[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
src_prepare() {
sed "s/packages=find_packages()/packages=find_packages(exclude=['tests','tests.*'])/g" -i setup.py || die
eapply_user
}
python_test() {
py.test -v -v || die
}