depot/third_party/nixpkgs/pkgs/applications/misc/vit/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

41 lines
816 B
Nix

{ lib
, python3Packages
, fetchPypi
, taskwarrior
, glibcLocales
}:
with python3Packages;
buildPythonApplication rec {
pname = "vit";
version = "2.3.2";
disabled = lib.versionOlder python.version "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-qDfY6GWnDQ44Sh540xQzDwANEI+mLjpy2a7G3sfKIzw=";
};
propagatedBuildInputs = [
tasklib
urwid
];
nativeCheckInputs = [ glibcLocales ];
makeWrapperArgs = [ "--suffix" "PATH" ":" "${taskwarrior}/bin" ];
preCheck = ''
export TERM=''${TERM-linux}
'';
meta = with lib; {
homepage = "https://github.com/scottkosty/vit";
description = "Visual Interactive Taskwarrior";
mainProgram = "vit";
maintainers = with maintainers; [ arcnmx ];
platforms = platforms.all;
license = licenses.mit;
};
}