nixpkgs/pkgs/development/python-modules/alot/default.nix

72 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, python, fetchFromGitHub, isPy3k, pytestCheckHook
, notmuch2, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme
, service-identity, gnupg, sphinx, gawk, procps, future , withManpage ? false
}:
2018-03-10 11:57:55 +00:00
buildPythonPackage rec {
pname = "alot";
version = "0.10";
outputs = [ "out" ] ++ lib.optional withManpage "man";
2018-03-10 11:57:55 +00:00
2018-12-12 12:31:32 +00:00
disabled = !isPy3k;
2018-03-10 11:57:55 +00:00
src = fetchFromGitHub {
owner = "pazz";
repo = "alot";
2019-09-08 23:38:31 +00:00
rev = version;
sha256 = "sha256-1reAq8X9VwaaZDY5UfvcFzHDKd71J88CqJgH3+ANjis=";
2018-03-10 11:57:55 +00:00
};
2020-04-19 19:15:55 +00:00
postPatch = ''
substituteInPlace alot/settings/manager.py --replace /usr/share "$out/share"
'';
nativeBuildInputs = lib.optional withManpage sphinx;
2018-03-10 11:57:55 +00:00
propagatedBuildInputs = [
notmuch2
2018-03-10 11:57:55 +00:00
urwid
urwidtrees
twisted
python_magic
configobj
service-identity
2018-03-10 11:57:55 +00:00
file
gpgme
2018-03-10 11:57:55 +00:00
];
postBuild = lib.optionalString withManpage "make -C docs man";
checkInputs = [ gawk future mock gnupg procps pytestCheckHook ];
# some twisted tests need internet access
disabledTests = [
"test_env_set"
"test_no_spawn_no_stdin_attached"
];
postInstall = let
completionPython = python.withPackages (ps: [ ps.configobj ]);
in lib.optionalString withManpage ''
mkdir -p $out/man
cp -r docs/build/man $out/man
''
+ ''
mkdir -p $out/share/{applications,alot}
cp -r extra/themes $out/share/alot
substituteInPlace extra/completion/alot-completion.zsh \
--replace "python3" "${completionPython.interpreter}"
install -D extra/completion/alot-completion.zsh $out/share/zsh/site-functions/_alot
sed "s,/usr/bin,$out/bin,g" extra/alot.desktop > $out/share/applications/alot.desktop
2018-03-10 11:57:55 +00:00
'';
meta = with lib; {
homepage = "https://github.com/pazz/alot";
2018-03-10 11:57:55 +00:00
description = "Terminal MUA using notmuch mail";
license = licenses.gpl3Plus;
2018-03-10 11:57:55 +00:00
platforms = platforms.linux;
2022-01-04 12:29:54 +00:00
maintainers = with maintainers; [ milibopp ];
2018-03-10 11:57:55 +00:00
};
}