nixpkgs/pkgs/applications/misc/vit/default.nix
Anderson Torres 2ac414fa93 treewide: remove dtzWill as maintainer [no orphans]
Since theey is not active in a long span of time.

None of the packages in this commit are orphan.
2024-07-17 13:25:27 -03:00

42 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;
};
}