2022-12-01 18:16:22 +00:00
|
|
|
{ lib
|
|
|
|
, pythonPackages
|
2023-05-25 18:37:59 +00:00
|
|
|
, fetchPypi
|
2022-12-01 18:16:22 +00:00
|
|
|
, taskwarrior
|
|
|
|
, writeShellScriptBin
|
|
|
|
}:
|
2019-10-15 17:09:48 +00:00
|
|
|
|
|
|
|
with pythonPackages;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
wsl_stub = writeShellScriptBin "wsl" "true";
|
|
|
|
|
|
|
|
in buildPythonPackage rec {
|
|
|
|
pname = "tasklib";
|
2022-11-30 23:36:55 +00:00
|
|
|
version = "2.5.1";
|
2019-10-15 17:09:48 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-12-01 18:16:22 +00:00
|
|
|
hash = "sha256-XM1zG1JjbdEEV6i42FjLDQJv+qsePnUbr3kb+APjfXs=";
|
2019-10-15 17:09:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
six
|
|
|
|
pytz
|
|
|
|
tzlocal
|
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2019-10-15 17:09:48 +00:00
|
|
|
taskwarrior
|
|
|
|
wsl_stub
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/robgolding/tasklib";
|
2022-12-01 18:16:22 +00:00
|
|
|
description = "Library for interacting with taskwarrior databases";
|
|
|
|
changelog = "https://github.com/GothenburgBitFactory/tasklib/releases/tag/${version}";
|
2019-10-15 17:09:48 +00:00
|
|
|
maintainers = with maintainers; [ arcnmx ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|