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