dev-python/braintree: Bump to 4.35.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-05-01 04:16:03 +02:00
parent d1b2e9955d
commit fd9b188b95
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST braintree_python-4.34.0.gh.tar.gz 250439 BLAKE2B cc3d31be58c7b0a1ee1fbae258cd5721573f8a58e789950c481ea008d85a795da87a313b55b816a2660a764d22abfde8408327769722236d26cd1cd9620beeb0 SHA512 a181e0e38745c8037b9074ecc3b21ceb0c9f4d30a9931cf626cd1b75831a6d1daf9cf2f0ab02fa9c5f004d9f0f62e721aa02ad75ced57157e4f226290442c0a4
DIST braintree_python-4.35.0.gh.tar.gz 245250 BLAKE2B 953614483a824d56d892d488eb98e01da24b48d8842b58901d12ee2f5b150ad62fbecd3fbde847e70d088ae4fd4eb12acced9c04a5008d9886488228517f2583 SHA512 5983592fff47b60e307f6535c32f7f9a2a0deea9d6f4dcb5d917e210d56bbd278feabece70bdef0b2e8b6aa598166c6665f2e54e88ceccf9254e3f093ba3dbc2

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_{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
}