dev-python/braintree: Bump to 4.41.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-12-12 05:05:08 +01:00
parent ecd48c2800
commit c286330601
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST braintree_python-4.40.0.gh.tar.gz 261148 BLAKE2B 7d3ab6ed41fb3ad19a12ae3824872d6f88dfdcf0b5990c88a1dfcf6677ab0de46e37ee77a185ad15614473b89116fe4958011976b16955257a5778447282ad8c SHA512 d3735e6ee338d775029090532f82ed3d68f51bf8436c95b968ae2af242120aef6cbeab859315775963a4ba9471eeb6d53d13c40a3037248d1488cde460f5ae5a
DIST braintree_python-4.41.0.gh.tar.gz 261846 BLAKE2B cd1cad5037e4eb65c20ccef1789f3c4f60bd9ed68ab627e8dcd548d59f1ae609b8a1b5e9c7afcdbfb656b960693b652a57a38187241c0d5c85036c344731cf47 SHA512 5697875c19283dc6f1f0afdafd4b6c1f4aebeb0750c269cd96d7016f928ce701d4935d52fc8702dcb32c2417f25084fa9fdbb510d7d89d59598ea5912ef942a9

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
}