[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42297] [PATCH 06/10] gnu: Add python-emailthreads.
From: |
Alexandru-Sergiu Marton |
Subject: |
[bug#42297] [PATCH 06/10] gnu: Add python-emailthreads. |
Date: |
Thu, 9 Jul 2020 22:19:14 +0300 |
* gnu/packages/python-xyz.scm (python-emailthreads): New variable.
---
gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 20abc1a9d3..b3dddc57c1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20552,3 +20552,33 @@ CommandServer.")
"Unidiff is a simple Python library to parse and interact with unified
diff data.")
(license license:expat)))
+
+(define-public python-emailthreads
+ (package
+ (name "python-emailthreads")
+ (version "v0.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "emailthreads" version))
+ (sha256
+ (base32
+ "128by819l2awvs3gvlcs75s0k8lfl8420s9khjh8bfk8p780rlfm"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:modules ((guix build utils)
+ (guix build python-build-system))
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'prepare-for-tests
+ (lambda _
+ (setenv "PKGVER" (version)))))))
+ (home-page
+ "https://github.com/emersion/python-emailthreads")
+ (synopsis
+ "Parses email threads into conversation trees")
+ (description
+ "Python library to parse and format email threads. Give it a list
+of emails that are part of the same thread and it'll build a tree of
+responses to the original message.")
+ (license license:expat)))
--
2.27.0
- [bug#42297] [PATCH 00/10] Add Python packages for Sourcehut, Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 03/10] gnu: Add python-minio., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 04/10] gnu: Add python-hglib., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 01/10] gnu: Add hg-evolve., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 02/10] gnu: Add python-pgpy., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 06/10] gnu: Add python-emailthreads.,
Alexandru-Sergiu Marton <=
- [bug#42297] [PATCH 08/10] gnu: Add python-sshpubkeys., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 05/10] gnu: Add python-unidiff., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 07/10] gnu: Add python-zxcvbn., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 10/10] gnu: Add python-aiosmtpd., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 09/10] gnu: Add python-atpublic., Alexandru-Sergiu Marton, 2020/07/09