2019-10-15 17:10:36 +00:00
|
|
|
{ lib
|
|
|
|
, python3Packages
|
2023-05-25 18:37:59 +00:00
|
|
|
, fetchPypi
|
2024-06-10 16:38:55 +00:00
|
|
|
, taskwarrior2
|
2020-01-25 11:58:13 +00:00
|
|
|
, glibcLocales
|
|
|
|
}:
|
2015-07-05 14:02:35 +00:00
|
|
|
|
2019-10-15 17:10:36 +00:00
|
|
|
with python3Packages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2019-03-11 03:17:42 +00:00
|
|
|
pname = "vit";
|
2023-12-19 01:02:23 +00:00
|
|
|
version = "2.3.2";
|
2022-04-18 14:14:52 +00:00
|
|
|
disabled = lib.versionOlder python.version "3.7";
|
2015-07-05 14:02:35 +00:00
|
|
|
|
2019-10-15 17:10:36 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-07-13 16:25:56 +00:00
|
|
|
hash = "sha256-qDfY6GWnDQ44Sh540xQzDwANEI+mLjpy2a7G3sfKIzw=";
|
2015-07-05 14:02:35 +00:00
|
|
|
};
|
|
|
|
|
2019-10-15 17:10:36 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
tasklib
|
|
|
|
urwid
|
|
|
|
];
|
2015-07-05 14:02:35 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ glibcLocales ];
|
2020-01-25 11:58:13 +00:00
|
|
|
|
2024-06-10 16:38:55 +00:00
|
|
|
makeWrapperArgs = [ "--suffix" "PATH" ":" "${taskwarrior2}/bin" ];
|
2015-07-05 14:02:35 +00:00
|
|
|
|
2019-10-15 17:10:36 +00:00
|
|
|
preCheck = ''
|
|
|
|
export TERM=''${TERM-linux}
|
|
|
|
'';
|
2015-07-05 14:02:35 +00:00
|
|
|
|
2019-10-15 17:10:36 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/scottkosty/vit";
|
2015-07-05 14:02:35 +00:00
|
|
|
description = "Visual Interactive Taskwarrior";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "vit";
|
2024-07-17 15:08:08 +00:00
|
|
|
maintainers = with maintainers; [ arcnmx ];
|
2019-03-11 03:17:42 +00:00
|
|
|
platforms = platforms.all;
|
2019-10-15 17:10:36 +00:00
|
|
|
license = licenses.mit;
|
2015-07-05 14:02:35 +00:00
|
|
|
};
|
|
|
|
}
|