gnu: Add python-notmuch2.

* gnu/packages/mail.scm (python-notmuch2): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Tanguy Le Carrour 2021-11-24 15:00:33 +01:00 committed by Nicolas Goaziou
parent 7aff105123
commit 4be46b231f
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -107,6 +107,7 @@ (define-module (gnu packages mail)
#:use-module (gnu packages language)
#:use-module (gnu packages libcanberra)
#:use-module (gnu packages libevent)
#:use-module (gnu packages libffi)
#:use-module (gnu packages libidn)
#:use-module (gnu packages libunistring)
#:use-module (gnu packages libunwind)
@ -1511,6 +1512,21 @@ (define-public python-notmuch
(define-public python2-notmuch
(package-with-python2 python-notmuch))
(define-public python-notmuch2
(package
(inherit python-notmuch)
(name "python-notmuch2")
(propagated-inputs `(("python-cffi" ,python-cffi)))
(arguments
`(#:phases
(modify-phases %standard-phases
;; This python package lives in a subdirectory of the notmuch source
;; tree, so chdir into it before building.
(add-after 'unpack 'enter-python-dir
(lambda _ (chdir "bindings/python-cffi"))))))
(synopsis "Pythonic bindings for the notmuch mail database using CFFI")
(license license:gpl3+)))
(define-public muchsync
(package
(name "muchsync")