9 python3.pkgs.buildPythonApplication rec {
14 src = fetchFromGitHub {
17 rev = "refs/tags/v${version}";
18 hash = "sha256-5tQaNT6QVN9mxa9t6OvMux4ZGy4flUqszTAwet2QL0w=";
25 build-system = with python3.pkgs; [
29 dependencies = with python3.pkgs; [
44 nativeCheckInputs = with python3.pkgs; [
52 installShellCompletion --bash contrib/completion/bash/_todo
53 substituteInPlace contrib/completion/zsh/_todo --replace "jq " "${lib.getExe jq} "
54 installShellCompletion --zsh contrib/completion/zsh/_todo
58 # Testing of the CLI part and output
59 "test_color_due_dates"
61 "test_default_command"
63 "test_missing_cache_dir"
64 "test_sorting_null_values"
66 # Tests are sensitive to performance
70 pythonImportsCheck = [
75 homepage = "https://github.com/pimutils/todoman";
76 description = "Standards-based task manager based on iCalendar";
78 Todoman is a simple, standards-based, cli todo (aka task) manager. Todos
79 are stored into iCalendar files, which means you can sync them via CalDAV
80 using, for example, vdirsyncer.
82 Todos are read from individual ics files from the configured directory.
83 This matches the vdir specification. There is support for the most common TODO
84 features for now (summary, description, location, due date and priority) for
86 Unsupported fields may not be shown but are never deleted or altered.
88 changelog = "https://todoman.readthedocs.io/en/stable/changelog.html#v${
89 builtins.replaceStrings [ "." ] [ "-" ] version
91 license = lib.licenses.isc;
92 maintainers = with lib.maintainers; [