taskw-ng: init at 0.2.6

Takeover of taskw because the original maintainer of taskw seems to be
AWOL.

https://github.com/bergercookie/taskw-ng
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
Raito Bezarius 2024-04-01 04:15:54 +02:00
parent 7b6853a779
commit 0bde771323
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,56 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, poetry-dynamic-versioning
, kitchen
, packaging
, python-dateutil
, pytz
, taskwarrior
}:
buildPythonPackage rec {
pname = "taskw-ng";
version = "0.2.6";
pyproject = true;
src = fetchFromGitHub {
owner = "bergercookie";
repo = "taskw-ng";
rev = "v${version}";
hash = "sha256-tlidTt0TzWnvfajYiIfvRv7OfakHY6zWAicmAwq/Z8w=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'pytz = "^2023.3.post1"' 'pytz = "*"'
'';
nativeBuildInputs = [
poetry-core
poetry-dynamic-versioning
];
propagatedBuildInputs = [
kitchen
packaging
python-dateutil
pytz
];
checkInputs = [
taskwarrior
];
# TODO: doesn't pass because `can_use` fails and `task --version` seems not to be answering.
# pythonImportsCheck = [ "taskw_ng" ];
meta = with lib; {
description = "";
homepage = "https://github.com/bergercookie/taskw-ng";
changelog = "https://github.com/bergercookie/taskw-ng/blob/${src.rev}/CHANGELOG.rst";
license = licenses.gpl3Only;
maintainers = with maintainers; [ raitobezarius ];
};
}

View File

@ -14569,6 +14569,8 @@ self: super: with self; {
taskw = callPackage ../development/python-modules/taskw { };
taskw-ng = callPackage ../development/python-modules/taskw-ng { };
tatsu = callPackage ../development/python-modules/tatsu { };
taxi = callPackage ../development/python-modules/taxi { };