diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-01-26 07:44:35 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-01-26 08:10:42 +0100 |
commit | 1aa210c6843a6835e47b3304dc7905e7a98c3c9b (patch) | |
tree | d87793a708b89e36c1c7adb3fbc9410f25ad7135 /dev-python/braintree | |
parent | dev-python/tox: Bump to 4.4.2 (diff) | |
download | gentoo-1aa210c6843a6835e47b3304dc7905e7a98c3c9b.tar.gz gentoo-1aa210c6843a6835e47b3304dc7905e7a98c3c9b.tar.bz2 gentoo-1aa210c6843a6835e47b3304dc7905e7a98c3c9b.zip |
dev-python/braintree: Bump to 4.18.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/braintree')
-rw-r--r-- | dev-python/braintree/Manifest | 1 | ||||
-rw-r--r-- | dev-python/braintree/braintree-4.18.1.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/braintree/Manifest b/dev-python/braintree/Manifest index 19dca452bea2..82156bf04b19 100644 --- a/dev-python/braintree/Manifest +++ b/dev-python/braintree/Manifest @@ -1 +1,2 @@ DIST braintree_python-4.18.0.gh.tar.gz 216422 BLAKE2B 30ed072c3f6c6ae3cc9661fe5a1f49327ad2fd17261590a61aaae543966a40c9018a1c3b789e1ba3f387a8d93cff35c8b7ffd589e76ffefc572b7dc9fcd84951 SHA512 2abdec5e16386bed5e9c6d1d085ec604050907a57bf9dbe65c6c3d05b2bdf8f00929e11729b50a4774ab2bdd61a1a8d4a73f6c23368b663cc5757562b8ce1e4f +DIST braintree_python-4.18.1.gh.tar.gz 216743 BLAKE2B 715656ac712d6b79200c4453ca5ff35bf803ddaa04f57e174ebbc3f61776b3d373184ed82781349f0ea5205c8e7cedff701e6d254ff3b821be06b77c39352946 SHA512 7adb1f5e66113d663dc59cfc1df638c3bcdfc2f1ed46125b3e882ee48053e2ea07139f447cc4151dde6a7afb6986cb65d41f26a116d00a89e5f28d54409b9fcb diff --git a/dev-python/braintree/braintree-4.18.1.ebuild b/dev-python/braintree/braintree-4.18.1.ebuild new file mode 100644 index 000000000000..ba88647058bf --- /dev/null +++ b/dev-python/braintree/braintree-4.18.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +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/ +" +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.1[${PYTHON_USEDEP}] +" + +DOCS=( README.md ) + +distutils_enable_tests unittest + +python_test() { + eunittest tests/unit +} |