From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH] update notmuch and python bindings Date: Mon, 08 Aug 2016 11:35:12 +0300 Message-ID: <871t1zzmin.fsf@gmail.com> References: <147059611699.9624.567002638658964680@what> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59476) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWg1m-0007JU-4M for guix-devel@gnu.org; Mon, 08 Aug 2016 04:35:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bWg1h-0002Ds-Tm for guix-devel@gnu.org; Mon, 08 Aug 2016 04:35:17 -0400 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:33910) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWg1h-0002Dn-Mt for guix-devel@gnu.org; Mon, 08 Aug 2016 04:35:13 -0400 Received: by mail-wm0-x243.google.com with SMTP id q128so14019063wma.1 for ; Mon, 08 Aug 2016 01:35:13 -0700 (PDT) In-Reply-To: <147059611699.9624.567002638658964680@what> (Troy Sankey's message of "Sun, 07 Aug 2016 14:55:17 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Troy Sankey Cc: guix-devel@gnu.org > From b3c53dec33e35d554e4a30de108477bc4fbe932f Mon Sep 17 00:00:00 2001 > From: Troy Sankey > Date: Sun, 7 Aug 2016 13:26:30 -0400 > Subject: [PATCH 2/3] gnu: Add python-notmuch > > --- > gnu/packages/mail.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 42 insertions(+) > > diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm > index c58e5f5..96537c4 100644 > --- a/gnu/packages/mail.scm > +++ b/gnu/packages/mail.scm > @@ -517,6 +517,48 @@ ing, and tagging large collections of email messages.") > useful for email address completion.") > (license license:expat))) > > +(define-public python-notmuch > + (package > + (name "python-notmuch") > + (version "0.22.1") > + (source (origin > + (method url-fetch) > + ; notmuch python bindings are now unavailable on pypi. The > + ; bindings are distributed via the notmuch release tarball. > + (uri (string-append > + "https://notmuchmail.org/releases/notmuch-" > + version > + ".tar.gz")) > + (sha256 > + (base32 > + "0jwpda3q023dn3sp41n8648951i7iagfv8zzpriv7hpkjivlafg7")))) I forgot one thing: since the source will be the same as the one of 'notmuch' package, I'm going to write it like this: ;; Notmuch python bindings are now unavailable on pypi. The ;; bindings are distributed via the notmuch release tarball. (source (package-source notmuch)) Thanks again! (no need to resend the patches, I'll fix the mentioned notes) -- Alex