mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 11:09:41 -05:00
gnu: Add python-sendgrid.
* gnu/packages/python-web.scm (python-sendgrid): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
24dba9c5e7
commit
8d0e696243
1 changed files with 25 additions and 0 deletions
|
@ -7569,3 +7569,28 @@ (define-public python-http-client
|
|||
(description
|
||||
"This package provides access to any RESTful or RESTful-like API.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-sendgrid
|
||||
(package
|
||||
(name "python-sendgrid")
|
||||
(version "6.9.7")
|
||||
(home-page "https://github.com/sendgrid/sendgrid-python/")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0kvp4gm3bpcsj2mkv05pgvlcv1jlsfhcljcv61wz5kq9d273h7rg"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f)) ;241/340 tests fail due to attempted web access
|
||||
(propagated-inputs (list python-http-client python-starkbank-ecdsa))
|
||||
(synopsis "SendGrid API library for Python")
|
||||
(description
|
||||
"The @code{sendgrid} Python library allows access to the
|
||||
SendGrid Web API v3. Version 3+ of the library provides full support for all
|
||||
SendGrid Web API v3 endpoints, including the new v3 /mail/send.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue