dev-python/braintree: Bump to 4.43.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-05-01 05:41:48 +02:00
parent 123bb888de
commit dccda40a56
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST braintree_python-4.42.0.gh.tar.gz 262839 BLAKE2B e19d57ae965abd34a66f37bcab71bc6afe9ec1e3aa8bf311d369472f6f25d8e2428882b63000ce02e2461089f4c434c540ba4a2e4b3186fb24337ab0cb71f2ef SHA512 58fa787fa01e6542b83f5e1c817dd651ddca541074ed87ba57a77b39be040066d7bfe597cdeb06971399ed1926f5fe3cc5394bac5555e6086d656e0ce70437cf
DIST braintree_python-4.43.0.gh.tar.gz 272734 BLAKE2B 1c44ec217643a44e847e76a01cce6ea3a6ea93a12885f0a549efaf7dd03f9577041c066058bb73339f6162a1a41a33a5aa622c2ba68d27df7463b44f459d992b SHA512 6b7bfa243fb88ab785f19e2ed18ebf85cab4e75a262e661148a19f845d4d81228f09cacdd928e783b0b6ee9a2c15c3ff7865cdcb932ddf836ea7e71b36c2532f

View File

@@ -0,0 +1,39 @@
# Copyright 2020-2026 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
}