mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 22:56:23 +01:00
gnu: Add python-stripe.
* gnu/packages/python-xyz.scm (python-stripe): New variable.
This commit is contained in:
parent
0f22a96d93
commit
6cb645b73b
1 changed files with 23 additions and 0 deletions
|
@ -26755,3 +26755,26 @@ (define-public python-ofxparse
|
|||
from multiple sources. Online trading accounts also often provide account
|
||||
statements in OFX files.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-stripe
|
||||
(package
|
||||
(name "python-stripe")
|
||||
(version "2.60.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "stripe" version))
|
||||
(sha256
|
||||
(base32 "0258lzh4qikhinfggnlfh5aklcvg7lrvl8giqrh0yf0l61wvfrl9"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ;; tests require network
|
||||
(propagated-inputs
|
||||
`(("python-requests" ,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)))
|
||||
|
|
Loading…
Reference in a new issue