2019-11-13 07:03:34 -08:00
|
|
|
{ stdenv, python3Packages, notmuch }:
|
2018-01-11 11:54:20 -08:00
|
|
|
|
2019-11-13 07:03:34 -08:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-01-11 11:54:20 -08:00
|
|
|
pname = "afew";
|
2020-10-12 05:34:00 -07:00
|
|
|
version = "3.0.1";
|
2018-01-11 11:54:20 -08:00
|
|
|
|
2019-11-13 07:03:34 -08:00
|
|
|
src = python3Packages.fetchPypi {
|
2018-01-11 11:54:20 -08:00
|
|
|
inherit pname version;
|
2020-10-12 05:34:00 -07:00
|
|
|
sha256 = "0wpfqbqjlfb9z0hafvdhkm7qw56cr9kfy6n8vb0q42dwlghpz1ff";
|
2018-01-11 11:54:20 -08:00
|
|
|
};
|
|
|
|
|
2019-11-13 07:03:34 -08:00
|
|
|
nativeBuildInputs = with python3Packages; [ sphinx setuptools_scm ];
|
2018-01-11 11:54:20 -08:00
|
|
|
|
2019-11-13 07:03:34 -08:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
python3Packages.setuptools python3Packages.notmuch chardet dkimpy
|
2020-03-09 18:27:25 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = with python3Packages; [
|
|
|
|
freezegun notmuch
|
|
|
|
];
|
2018-01-11 11:54:20 -08:00
|
|
|
|
2019-06-16 03:02:41 -07:00
|
|
|
makeWrapperArgs = [
|
|
|
|
''--prefix PATH ':' "${notmuch}/bin"''
|
|
|
|
];
|
|
|
|
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2018-09-14 09:51:37 -07:00
|
|
|
postBuild = ''
|
2019-11-13 07:03:34 -08:00
|
|
|
${python3Packages.python.interpreter} setup.py build_sphinx -b html,man
|
2018-09-14 09:51:37 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2019-06-16 03:02:41 -07:00
|
|
|
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
|
2018-09-14 09:51:37 -07:00
|
|
|
'';
|
|
|
|
|
2018-01-11 11:54:20 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/afewmail/afew";
|
2018-01-11 11:54:20 -08:00
|
|
|
description = "An initial tagging script for notmuch mail";
|
|
|
|
license = licenses.isc;
|
2019-07-03 02:27:39 -07:00
|
|
|
maintainers = with maintainers; [ andir flokli ];
|
2018-01-11 11:54:20 -08:00
|
|
|
};
|
|
|
|
}
|