mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
40 lines
789 B
Nix
40 lines
789 B
Nix
{ lib
|
|
, python3Packages
|
|
, taskwarrior
|
|
, glibcLocales
|
|
}:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "vit";
|
|
version = "2.2.0";
|
|
disabled = lib.versionOlder python.version "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-6GbIc5giuecxUqswyaAJw675R1M8BvelyyRNFcTqKW8=";
|
|
};
|
|
|
|
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";
|
|
maintainers = with maintainers; [ dtzWill arcnmx ];
|
|
platforms = platforms.all;
|
|
license = licenses.mit;
|
|
};
|
|
}
|