guix-patches
[Top][All Lists]
Advanced

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

[bug#44138] [PATCH] gnu: Add python-imap-tools.


From: Reza Alizadeh Majd
Subject: [bug#44138] [PATCH] gnu: Add python-imap-tools.
Date: Thu, 22 Oct 2020 18:12:04 +0330

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

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index b8b7ce9d31..0f9b4a4af6 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5164,3 +5164,22 @@ Encoding for HTTP.")
      "This module acts as a webbrowser solving Cloudflare's Javascript
 challenges.")
     (license license:expat)))
+
+(define-public python-imap-tools
+  (package
+    (name "python-imap-tools")
+    (version "0.27.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "imap_tools" version))
+        (sha256
+          (base32
+            "0zd3dkahjc3np9b9zs9cqgmif1gd64ykl1ydw60k5l5zli4ydlk8"))))
+    (build-system python-build-system)
+    (arguments '(#:tests? #f))          ; tests require internet access
+    (home-page "https://github.com/ikvk/imap_tools";)
+    (synopsis "Work with email and mailbox by IMAP")
+    (description
+      "Work with email and mailbox by IMAP")
+    (license license:asl2.0)))
-- 
2.28.0






reply via email to

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