diff options
Diffstat (limited to 'dev-python/braintree/braintree-4.31.0.ebuild')
-rw-r--r-- | dev-python/braintree/braintree-4.31.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/braintree/braintree-4.31.0.ebuild b/dev-python/braintree/braintree-4.31.0.ebuild new file mode 100644 index 000000000000..42722b55e6d7 --- /dev/null +++ b/dev-python/braintree/braintree-4.31.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2020-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 + +MY_P=braintree_python-${PV} +DESCRIPTION="Braintree Python Library" +HOMEPAGE=" + https://developer.paypal.com/braintree/docs/reference/overview/ + https://github.com/braintree/braintree_python/ + https://pypi.org/project/braintree/ +" +# no tests in sdist, as of 4.19.0 +SRC_URI=" + https://github.com/braintree/braintree_python/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/requests-0.11.0[${PYTHON_USEDEP}] +" + +DOCS=( README.md ) + +distutils_enable_tests unittest + +python_test() { + eunittest tests/unit +} |