emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#56208: closed ([PATCH] gnu: Add python-sendgrid.)


From: GNU bug Tracking System
Subject: bug#56208: closed ([PATCH] gnu: Add python-sendgrid.)
Date: Sun, 26 Jun 2022 21:20:02 +0000

Your message dated Sun, 26 Jun 2022 23:18:47 +0200
with message-id <87ilonqg20.fsf@gnu.org>
and subject line Re: bug#56208: [PATCH] gnu: Add python-sendgrid.
has caused the debbugs.gnu.org bug report #56208,
regarding [PATCH] gnu: Add python-sendgrid.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
56208: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56208
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-sendgrid. Date: Sat, 25 Jun 2022 04:25:03 +0000
Depends on patch #56196 (python-http-client) and #56207 
(python-starkbank-ecdsa).
https://issues.guix.gnu.org/56196
https://issues.guix.gnu.org/56207

* gnu/packages/python-web.scm (python-sendgrid): New variable.
---
 gnu/packages/python-web.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6c121907e6..1afa0ef487 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7546,3 +7546,27 @@ (define-public python-zeep
 @end itemize")
     (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)))
-- 
2.36.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#56208: [PATCH] gnu: Add python-sendgrid. Date: Sun, 26 Jun 2022 23:18:47 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
Antero Mejr <antero@mailbox.org> skribis:

> Depends on patch #56196 (python-http-client) and #56207 
> (python-starkbank-ecdsa).
> https://issues.guix.gnu.org/56196
> https://issues.guix.gnu.org/56207
>
> * gnu/packages/python-web.scm (python-sendgrid): New variable.

Applied, thanks!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]