From 12a10c20ae9be45aa5b197a7621092b46d820f09 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 21 Nov 2025 21:51:14 +0100 Subject: [PATCH] gnu: python-braintree: Update to 4.40.0. * gnu/packages/python-xyz.scm (python-braintree): Update to 4.40.0. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable them. [native-inputs]: Add python-setuptools. [description]: Improve style. Change-Id: I9545c3bd37945d9d7ba024501a2b86528a555b1f Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9123c7073405e8b3fe5c739edf939289cda6146b..e9e7c4bbecf319e9beefa569e250d4a5c258942a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33385,21 +33385,23 @@ the beginning of the file or directory name.") (define-public python-braintree (package (name "python-braintree") - (version "4.12.0") + (version "4.40.0") (source (origin (method url-fetch) (uri (pypi-uri "braintree" version)) (sha256 - (base32 "19kli85q18p80nsn8fm4ql6axpr7bllfqg5chv2ywhr8zr8bssll")))) - (build-system python-build-system) - (propagated-inputs - (list python-requests)) + (base32 "0pjllhyx9ymad9nspaviysda4pb5cbl83c6fq4bhwl6khzyh0bkr")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests. + (native-inputs (list python-setuptools)) + (propagated-inputs (list python-requests)) (home-page "https://developers.braintreepayments.com/python/sdk/server/overview") (synopsis "Braintree Python Library") - (description "The Braintree Python SDK provides integration access to the -Braintree Gateway. Braintree is a US-based payments service provider.") + (description + "The Braintree Python SDK provides integration access to the Braintree +Gateway. Braintree is a US-based payments service provider.") (license license:expat))) (define-public python-markuppy