14 buildPythonPackage rec {
19 inherit pname version;
20 hash = "sha256-EQm9+b3nqbMqUAejAsh4MD/2UYi2QiWsdKMomkxUi90=";
23 patches = [ ./use-template-for-taskwarrior-install-path.patch ];
25 substituteInPlace taskw/warrior.py \
26 --replace '@@taskwarrior@@' '${pkgs.taskwarrior}'
29 buildInputs = [ pkgs.taskwarrior ];
31 propagatedBuildInputs = [ six python-dateutil kitchen pytz ];
33 nativeCheckInputs = [ pytestCheckHook ];
36 homepage = "https://github.com/ralphbean/taskw";
37 description = "Python bindings for your taskwarrior database";
38 license = licenses.gpl3Plus;
39 maintainers = with maintainers; [ pierron ];