nixpkgs/pkgs/applications/networking/mailreaders/afew/default.nix

42 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, pythonPackages, notmuch }:
pythonPackages.buildPythonApplication rec {
pname = "afew";
2019-06-16 10:02:41 +00:00
version = "2.0.0";
src = pythonPackages.fetchPypi {
inherit pname version;
2019-06-16 10:02:41 +00:00
sha256 = "0j60501nm242idf2ig0h7p6wrg58n5v2p6zfym56v9pbvnbmns0s";
};
nativeBuildInputs = with pythonPackages; [ sphinx setuptools_scm ];
propagatedBuildInputs = with pythonPackages; [
2018-02-06 23:28:51 +00:00
pythonPackages.notmuch chardet dkimpy
] ++ stdenv.lib.optional (!pythonPackages.isPy3k) subprocess32;
2019-06-16 10:02:41 +00:00
makeWrapperArgs = [
''--prefix PATH ':' "${notmuch}/bin"''
];
outputs = [ "out" "doc" ];
postBuild = ''
2019-06-16 10:02:41 +00:00
python setup.py build_sphinx -b html,man
'';
postInstall = ''
2019-06-16 10:02:41 +00: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
'';
meta = with stdenv.lib; {
homepage = https://github.com/afewmail/afew;
description = "An initial tagging script for notmuch mail";
license = licenses.isc;
maintainers = with maintainers; [ garbas andir flokli ];
};
}