nixpkgs/pkgs/by-name/vi/vit/package.nix

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

42 lines
818 B
Nix
Raw Normal View History

2019-10-15 17:10:36 +00:00
{ lib
, python3Packages
2023-05-25 18:37:59 +00:00
, fetchPypi
, taskwarrior2
2020-01-25 11:58:13 +00:00
, glibcLocales
}:
2019-10-15 17:10:36 +00:00
with python3Packages;
buildPythonApplication rec {
pname = "vit";
2023-12-19 01:02:23 +00:00
version = "2.3.2";
disabled = lib.versionOlder python.version "3.7";
2019-10-15 17:10:36 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-qDfY6GWnDQ44Sh540xQzDwANEI+mLjpy2a7G3sfKIzw=";
};
2019-10-15 17:10:36 +00:00
propagatedBuildInputs = [
tasklib
urwid
];
nativeCheckInputs = [ glibcLocales ];
2020-01-25 11:58:13 +00:00
makeWrapperArgs = [ "--suffix" "PATH" ":" "${taskwarrior2}/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";
mainProgram = "vit";
maintainers = with maintainers; [ arcnmx ];
platforms = platforms.all;
2019-10-15 17:10:36 +00:00
license = licenses.mit;
};
}