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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

104 lines
2.0 KiB
Nix
Raw Normal View History

2022-01-24 21:52:30 +00:00
{ lib
, python3
, fetchFromGitHub
, file
, gnupg
, gawk
, notmuch
, procps
, withManpage ? false
}:
2018-03-10 11:57:55 +00:00
with python3.pkgs;
let
notmuch2 = callPackage ./notmuch.nix {
inherit notmuch;
};
2022-01-24 21:52:30 +00:00
in
buildPythonApplication rec {
2018-03-10 11:57:55 +00:00
pname = "alot";
version = "0.10";
2022-01-24 21:52:30 +00:00
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 = ''
2022-01-24 21:52:30 +00:00
substituteInPlace alot/settings/manager.py \
--replace /usr/share "$out/share"
2020-04-19 19:15:55 +00:00
'';
nativeBuildInputs = lib.optional withManpage sphinx;
2018-03-10 11:57:55 +00:00
propagatedBuildInputs = [
configobj
file
gpgme
2022-01-24 21:52:30 +00:00
notmuch2
python_magic
service-identity
twisted
urwid
urwidtrees
2018-03-10 11:57:55 +00:00
];
2022-01-24 21:52:30 +00:00
checkInputs = [
future
gawk
gnupg
mock
procps
pytestCheckHook
];
postBuild = lib.optionalString withManpage [
"make -C docs man"
];
disabledTests = [
2022-01-24 21:52:30 +00:00
# Some twisted tests need internet access
"test_env_set"
"test_no_spawn_no_stdin_attached"
2022-01-24 21:52:30 +00:00
# DatabaseLockedError
"test_save_named_query"
];
2022-01-24 21:52:30 +00:00
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
2022-01-24 21:52:30 +00:00
substituteInPlace extra/completion/alot-completion.zsh \
--replace "python3" "${completionPython.interpreter}"
install -D extra/completion/alot-completion.zsh $out/share/zsh/site-functions/_alot
2022-01-24 21:52:30 +00:00
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
};
}