dev-python/braintree: Bump to 4.38.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-08-06 06:19:29 +02:00
parent 6780c4c9b5
commit b31469b58c
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST braintree_python-4.37.0.gh.tar.gz 251736 BLAKE2B 4a7d89d72a306e23421394a2013a69fa9eea967b4ece0124a2b05133d7377e1b54bcc60b814fc6132b9fe1fee2c71ebf050d28194b3e5895463fd5a92a11bb27 SHA512 0982bb5ef9e390ee2f1ce5f945a1f38efe8b5da83c977ac7790309b41dcb84c00f1d79d7a815d74dd687caa49b2db0d1446e5086a3ef8ff471997673560668ea
DIST braintree_python-4.38.0.gh.tar.gz 252949 BLAKE2B 1ea4d1a1b2388fd3df1c5fd402a4feb1978e9a2817d358d4aa7fa473202a213d156f4517bd35d1adec48e0b0c2197cd015f4862bcebf8350da7c81761f3bd56e SHA512 b336c4004ca12695211a97d320d6c03eccadebfc514d9f639030cbae6008bf995a5ee997e9c175ddcb06e7c46228c2f871333a9a0f1985916c47ccc8ddb2750b

View File

@@ -0,0 +1,39 @@
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
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
}