summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-11-06 09:17:59 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-06 09:17:59 +0000
commit73fa31e593a1e97e7982c1b9ee63eae446b423f3 (patch)
treec2c8119803af43e69b2f65d1ef2727f216c14e41
parent8705e59524648138be780fc742a21a9ab2902a3f (diff)
gnu: python-stripe: Move to python-web.
* gnu/packages/python-xyz.scm (python-stripe): Move from here ... * gnu/packages/python-web.scm: ... to here. Change-Id: I7ed64071e57d8eb77b2e6df50de3cf2642cd60ce
-rw-r--r--gnu/packages/python-web.scm29
-rw-r--r--gnu/packages/python-xyz.scm29
2 files changed, 29 insertions, 29 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9c5dc096323..c674367886c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4150,6 +4150,35 @@ high-speed transfers via libcurl and frequently outperforms alternatives.")
;; under the terms of LGPLv2.1+ or Expat.
(license (list license:lgpl2.1+ license:expat))))
+(define-public python-stripe
+ (package
+ (name "python-stripe")
+ (version "13.2.0")
+ (source
+ (origin
+ (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 "0f0d1hqias3qylrhk56w055lqrlzjs9s7wxva30v54ykmn9nj6dx"))))
+ (build-system pyproject-build-system)
+ (arguments
+ '(#:tests? #f)) ;; tests require network
+ (native-inputs
+ (list python-flit-core))
+ (propagated-inputs
+ (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
+services' API. It includes a pre-defined set of classes for API resources
+that initialize themselves dynamically from API responses which makes it
+compatible with a wide range of versions of the Stripe API.")
+ (license license:expat)))
+
(define-public python-tldextract
(package
(name "python-tldextract")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 36d32c0f6de..0db8abe4bbd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34313,35 +34313,6 @@ the C time module reports is the local timezone offset.
@end itemize")
(license license:gpl3+)))
-(define-public python-stripe
- (package
- (name "python-stripe")
- (version "13.2.0")
- (source
- (origin
- (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 "0f0d1hqias3qylrhk56w055lqrlzjs9s7wxva30v54ykmn9nj6dx"))))
- (build-system pyproject-build-system)
- (arguments
- '(#:tests? #f)) ;; tests require network
- (native-inputs
- (list python-flit-core))
- (propagated-inputs
- (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
-services' API. It includes a pre-defined set of classes for API resources
-that initialize themselves dynamically from API responses which makes it
-compatible with a wide range of versions of the Stripe API.")
- (license license:expat)))
-
(define-public python-platformdirs
(package
(name "python-platformdirs")