2019-10-15 18:10:36 +01:00
|
|
|
{ lib
|
|
|
|
, python3Packages
|
2020-01-25 11:58:13 +00:00
|
|
|
, taskwarrior
|
|
|
|
, glibcLocales
|
|
|
|
}:
|
2015-07-05 15:02:35 +01:00
|
|
|
|
2019-10-15 18:10:36 +01:00
|
|
|
with python3Packages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2019-03-11 03:17:42 +00:00
|
|
|
pname = "vit";
|
2021-03-02 12:40:53 +00:00
|
|
|
version = "2.1.0";
|
2019-10-15 18:10:36 +01:00
|
|
|
disabled = lib.versionOlder python.version "3.6";
|
2015-07-05 15:02:35 +01:00
|
|
|
|
2019-10-15 18:10:36 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-02 12:40:53 +00:00
|
|
|
sha256 = "fd34f0b827953dfdecdc39f8416d41c50c24576c33a512a047a71c1263eb3e0f";
|
2015-07-05 15:02:35 +01:00
|
|
|
};
|
|
|
|
|
2019-10-15 18:10:36 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pytz
|
|
|
|
tasklib
|
|
|
|
tzlocal
|
|
|
|
urwid
|
|
|
|
];
|
2015-07-05 15:02:35 +01:00
|
|
|
|
2020-01-25 11:58:13 +00:00
|
|
|
checkInputs = [ glibcLocales ];
|
|
|
|
|
2019-10-15 18:10:36 +01:00
|
|
|
makeWrapperArgs = [ "--suffix" "PATH" ":" "${taskwarrior}/bin" ];
|
2015-07-05 15:02:35 +01:00
|
|
|
|
2019-10-15 18:10:36 +01:00
|
|
|
preCheck = ''
|
|
|
|
export TERM=''${TERM-linux}
|
|
|
|
'';
|
2015-07-05 15:02:35 +01:00
|
|
|
|
2019-10-15 18:10:36 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/scottkosty/vit";
|
2015-07-05 15:02:35 +01:00
|
|
|
description = "Visual Interactive Taskwarrior";
|
2019-10-15 18:10:36 +01:00
|
|
|
maintainers = with maintainers; [ dtzWill arcnmx ];
|
2019-03-11 03:17:42 +00:00
|
|
|
platforms = platforms.all;
|
2019-10-15 18:10:36 +01:00
|
|
|
license = licenses.mit;
|
2015-07-05 15:02:35 +01:00
|
|
|
};
|
|
|
|
}
|