906dccf595
MailMover: many fixes Previously, MailMover didn't properly preserve flags when renaming files, and moved all mail to `cur`. This was fixed. Also, MailMover gained a test suite. New filters: PropagateTags[ByRegex]InThreadFilter These filters allow propagating tags set to a message to the whole thread. New command line argument: --notmuch-args= in move mode In move mode, afew calls `notmuch new` after moving mails around. This prevents `afew -m` from being used in a pre-new hook in `notmuch`. Now it's possible to specify notmuch args, so something like `afew -m --notmuch-args=--no-hooks` can live happily in a pre-new hook. Python 3.4 and 3.5 support dropped afew stopped supporting the older python versions 3.4 and 3.5, and removed some more Python 2 compatibility code. (`from __future__ import …`, utf-8 headers, relative imports, …)
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ stdenv, python3Packages, notmuch }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "afew";
|
|
version = "3.0.0";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "18j3xyzchlslcrkycr2i59jg73cb6yh5s7l3qnl6sa7vgxcbhq7c";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [ sphinx setuptools_scm ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
python3Packages.setuptools python3Packages.notmuch chardet dkimpy
|
|
];
|
|
|
|
checkInputs = with python3Packages; [
|
|
freezegun notmuch
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
''--prefix PATH ':' "${notmuch}/bin"''
|
|
];
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
postBuild = ''
|
|
${python3Packages.python.interpreter} setup.py build_sphinx -b html,man
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -D -v -t $out/share/man/man1 build/sphinx/man/*
|
|
mkdir -p $out/share/doc/afew
|
|
cp -R build/sphinx/html/* $out/share/doc/afew
|
|
'';
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/afewmail/afew;
|
|
description = "An initial tagging script for notmuch mail";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ andir flokli ];
|
|
};
|
|
}
|