Files
gentoo/dev-python/stripe/stripe-1.62.0.ebuild
Cédric Krier 7b6e13d6c9 dev-python/stripe: Version bumps to 1.62.0 and add test
Package-Manager: Portage-2.3.6, Repoman-2.3.1
2017-07-16 17:46:16 +02:00

31 lines
600 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="Stripe python bindings"
HOMEPAGE="https://github.com/stripe/stripe-python"
SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=">=dev-python/requests-0.8.8"
DEPEND="${RDEPEND}
test? (
dev-python/unittest2
dev-python/mock
dev-python/pycurl
)"
DOCS="LONG_DESCRIPTION.rst"
python_test() {
${PYTHON:-python} -Wall setup.py test || die
}