2018-03-07 00:57:40 +01:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, isPy3k
|
2018-03-26 20:25:55 +02:00
|
|
|
, notmuch, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme
|
|
|
|
, service-identity
|
2018-03-07 00:57:40 +01:00
|
|
|
, gnupg ? null, sphinx, awk ? null, procps ? null, future ? null
|
|
|
|
, withManpage ? false }:
|
|
|
|
|
2018-03-10 12:57:55 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "alot";
|
2018-03-07 00:57:40 +01:00
|
|
|
version = "0.7";
|
|
|
|
outputs = [ "out" ] ++ lib.optional withManpage "man";
|
2018-03-10 12:57:55 +01:00
|
|
|
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pazz";
|
2018-03-07 00:57:40 +01:00
|
|
|
repo = "alot";
|
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "1y932smng7qx7ybmqw4qh75b0lv9imfs5ak9fd0qhysij8kpmdhi";
|
2018-03-10 12:57:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace alot/defaults/alot.rc.spec \
|
|
|
|
--replace "themes_dir = string(default=None)" \
|
|
|
|
"themes_dir = string(default='$out/share/themes')"
|
|
|
|
'';
|
|
|
|
|
2018-03-07 00:57:40 +01:00
|
|
|
nativeBuildInputs = lib.optional withManpage sphinx;
|
|
|
|
|
2018-03-10 12:57:55 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
notmuch
|
|
|
|
urwid
|
|
|
|
urwidtrees
|
|
|
|
twisted
|
|
|
|
python_magic
|
|
|
|
configobj
|
2018-03-07 00:57:40 +01:00
|
|
|
service-identity
|
2018-03-10 12:57:55 +01:00
|
|
|
file
|
2018-03-26 20:25:55 +02:00
|
|
|
gpgme
|
2018-03-10 12:57:55 +01:00
|
|
|
];
|
|
|
|
|
2018-03-07 00:57:40 +01:00
|
|
|
# some twisted tests need the network (test_env_set... )
|
|
|
|
doCheck = false;
|
|
|
|
postBuild = lib.optionalString withManpage "make -C docs man";
|
|
|
|
|
|
|
|
checkInputs = [ awk future mock gnupg procps ];
|
|
|
|
|
|
|
|
postInstall = lib.optionalString withManpage ''
|
|
|
|
mkdir -p $out/man
|
|
|
|
cp -r docs/build/man $out/man
|
|
|
|
''
|
|
|
|
+ ''
|
|
|
|
mkdir -p $out/share/applications
|
2018-03-10 12:57:55 +01:00
|
|
|
cp -r extra/themes $out/share
|
2018-03-07 00:57:40 +01:00
|
|
|
|
|
|
|
sed "s,/usr/bin,$out/bin,g" extra/alot.desktop > $out/share/applications/alot.desktop
|
2018-03-10 12:57:55 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/pazz/alot;
|
|
|
|
description = "Terminal MUA using notmuch mail";
|
2018-03-07 00:57:40 +01:00
|
|
|
license = licenses.gpl3;
|
2018-03-10 12:57:55 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ garbas ];
|
|
|
|
};
|
|
|
|
}
|