diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-11-26 23:41:11 +0100 |
|---|---|---|
| committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-11-27 00:02:48 +0100 |
| commit | ec53e575fc7f4194b48739c011d09cf534a13e5e (patch) | |
| tree | a3d5e2e52956440fc893f42876dac96c3a3024d6 /gnu/packages/python-web.scm | |
| parent | a51172821030d48850cb73c36b5c5298fefae6b4 (diff) | |
gnu: Add python-stripe-12.
* gnu/packages/python-web.scm (python-stripe-12): New variable.
Change-Id: I7f72a250a1b93625c37788819eb904004397ec0a
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 366b7d6ab1e..328fd026eda 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4164,6 +4164,23 @@ 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-stripe-12 + (hidden-package + (package/inherit python-stripe + (name "python-stripe") + (version "12.5.1") + (source + (origin + (inherit (package-source python-stripe)) + (uri (git-reference + (url "https://github.com/stripe/stripe-python") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 + "0jgixfb8ydlx387vm7rdaqrzsiqbvi99nszrpb1ghjqyn755xigd")))) + (native-inputs + (list python-setuptools))))) + (define-public python-tldextract (package (name "python-tldextract") |
