guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 12a10c20ae9be45aa5b197a7621092b46d820f09
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Nov 21 21:51:14 2025 +0100
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 <[email protected]>
---
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 9123c70734..e9e7c4bbec 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