From 8705e59524648138be780fc742a21a9ab2902a3f Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 6 Nov 2025 09:08:45 +0000 Subject: [PATCH] gnu: python-stripe: Update to 13.2.0. * gnu/packages/python-xyz.scm (python-stripe): Update to 13.2.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Add python-httpx. [native-inputs]: Add python-flit-core. Change-Id: I8be107702b2d20258f2d214dd9db517ce0d32426 --- gnu/packages/python-xyz.scm | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6bce45ed1ecb07988e5d450aaa5359aa7acc0637..36d32c0f6dec4559027efb6d2a438cc5eb799dad 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -34316,18 +34316,24 @@ the C time module reports is the local timezone offset. (define-public python-stripe (package (name "python-stripe") - (version "2.60.0") + (version "13.2.0") (source (origin - (method url-fetch) - (uri (pypi-uri "stripe" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/stripe/stripe-python") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "0258lzh4qikhinfggnlfh5aklcvg7lrvl8giqrh0yf0l61wvfrl9")))) - (build-system python-build-system) + (base32 "0f0d1hqias3qylrhk56w055lqrlzjs9s7wxva30v54ykmn9nj6dx")))) + (build-system pyproject-build-system) (arguments '(#:tests? #f)) ;; tests require network + (native-inputs + (list python-flit-core)) (propagated-inputs - (list python-requests)) + (list python-httpx + python-requests)) (home-page "https://github.com/stripe/stripe-python") (synopsis "Python bindings for the Stripe financial services' API") (description "This package provides access to the Stripe financial