2023-03-07 13:31:52 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
2023-09-16 20:47:52 +00:00
|
|
|
, dooit
|
2023-03-07 13:31:52 +00:00
|
|
|
, python3
|
2023-09-16 20:47:52 +00:00
|
|
|
, testers
|
2023-03-07 13:31:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "dooit";
|
2024-01-07 16:03:51 +00:00
|
|
|
version = "2.1.1";
|
2024-01-17 21:16:46 +00:00
|
|
|
pyproject = true;
|
2023-03-07 13:31:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kraanzu";
|
2023-09-16 20:47:52 +00:00
|
|
|
repo = "dooit";
|
2023-03-07 13:31:52 +00:00
|
|
|
rev = "v${version}";
|
2024-01-07 16:03:51 +00:00
|
|
|
hash = "sha256-YfWfh8oDZSG1DdAV+hzchqyNSSqyeNR5SSEa9B5yGY8=";
|
2023-03-07 13:31:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
|
|
poetry-core
|
2024-01-17 21:16:46 +00:00
|
|
|
pythonRelaxDepsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonRelaxDeps = [
|
|
|
|
"tzlocal"
|
2023-03-07 13:31:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2023-09-14 00:46:08 +00:00
|
|
|
appdirs
|
2023-03-07 13:31:52 +00:00
|
|
|
pyperclip
|
2023-09-14 00:46:08 +00:00
|
|
|
python-dateutil
|
2023-03-07 13:31:52 +00:00
|
|
|
pyyaml
|
2023-09-14 00:46:08 +00:00
|
|
|
textual
|
2023-03-07 13:31:52 +00:00
|
|
|
tzlocal
|
|
|
|
];
|
|
|
|
|
|
|
|
# No tests available
|
|
|
|
doCheck = false;
|
|
|
|
|
2023-09-16 20:47:52 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = dooit;
|
|
|
|
command = "HOME=$(mktemp -d) dooit --version";
|
|
|
|
};
|
|
|
|
|
2023-03-07 13:31:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A TUI todo manager";
|
|
|
|
homepage = "https://github.com/kraanzu/dooit";
|
|
|
|
changelog = "https://github.com/kraanzu/dooit/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.mit;
|
2023-09-16 14:26:33 +00:00
|
|
|
maintainers = with maintainers; [ khaneliman wesleyjrz ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "dooit";
|
2023-03-07 13:31:52 +00:00
|
|
|
};
|
|
|
|
}
|