[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/10: gnu: Add python-imap-tools.
From: |
guix-commits |
Subject: |
06/10: gnu: Add python-imap-tools. |
Date: |
Sat, 24 Oct 2020 19:07:41 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 52c86fe8c9df402ee5046a6b0daf9138f0bcf3d5
Author: Reza Alizadeh Majd <r.majd@pantherx.org>
AuthorDate: Thu Oct 22 18:12:04 2020 +0330
gnu: Add python-imap-tools.
* gnu/packages/python-web.scm (python-imap-tools): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-web.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index b8b7ce9..da0a986 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5164,3 +5164,30 @@ 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
+ "This Python library provides tools to deal with email and mailboxes
+over IMAP:
+
+@itemize
+@item Parsed email message attributes
+@item Query builder for searching emails
+@item Work with emails in folders (copy, delete, flag, move, seen)
+@item Work with mailbox folders (list, set, get, create, exists, rename,
delete, status)
+@end itemize")
+ (license license:asl2.0)))
- branch master updated (6a3b476 -> cedb079), guix-commits, 2020/10/24
- 01/10: offload: Export <build-machine> accessors., guix-commits, 2020/10/24
- 02/10: offload: Adjust default 'max-silent-time' value of 'open-ssh-session'., guix-commits, 2020/10/24
- 04/10: gnu: python-robotframework: Update to 3.2.2., guix-commits, 2020/10/24
- 05/10: gnu: python-robotframework-lint: Update to 1.1-0.b0619ac., guix-commits, 2020/10/24
- 07/10: gnu: python-imap-tools: Update to 0.29.0., guix-commits, 2020/10/24
- 03/10: gnu: python-invoke: Update to 1.4.1., guix-commits, 2020/10/24
- 06/10: gnu: Add python-imap-tools.,
guix-commits <=
- 08/10: services: guix: Make /etc/guix/acl really declarative by default., guix-commits, 2020/10/24
- 09/10: doc: Add "Getting Substitutes from Other Servers" section., guix-commits, 2020/10/24
- 10/10: news: Add entry for the declarative substitute ACL., guix-commits, 2020/10/24