nixpkgs/pkgs/applications/misc/vit/default.nix

42 lines
817 B
Nix
Raw Normal View History

2019-10-15 17:10:36 +00:00
{ lib
, python3Packages
2020-01-25 11:58:13 +00:00
, taskwarrior
, glibcLocales
}:
2019-10-15 17:10:36 +00:00
with python3Packages;
buildPythonApplication rec {
pname = "vit";
2019-10-15 17:10:36 +00:00
version = "2.0.0";
disabled = lib.versionOlder python.version "3.6";
2019-10-15 17:10:36 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "5282d8076d9814d9248071aec8784cffbd968601542533ccb28ca61d1d08205e";
};
2019-10-15 17:10:36 +00:00
propagatedBuildInputs = [
pytz
tasklib
tzlocal
urwid
];
2020-01-25 11:58:13 +00:00
checkInputs = [ glibcLocales ];
2019-10-15 17:10:36 +00:00
makeWrapperArgs = [ "--suffix" "PATH" ":" "${taskwarrior}/bin" ];
2019-10-15 17:10:36 +00:00
preCheck = ''
export TERM=''${TERM-linux}
'';
2019-10-15 17:10:36 +00:00
meta = with lib; {
homepage = "https://github.com/scottkosty/vit";
description = "Visual Interactive Taskwarrior";
2019-10-15 17:10:36 +00:00
maintainers = with maintainers; [ dtzWill arcnmx ];
platforms = platforms.all;
2019-10-15 17:10:36 +00:00
license = licenses.mit;
};
}