10 python3.pkgs.buildPythonApplication rec {
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 hash = "sha256-sk5LgFNo5Dc+oHCLu464Q1g0bk1QGsA7xMtMiits/8c=";
25 python3.pkgs.sphinx-click
26 python3.pkgs.sphinx-rtd-theme
29 build-system = with python3.pkgs; [
33 dependencies = with python3.pkgs; [
46 nativeCheckInputs = with python3.pkgs; [
55 installShellCompletion --bash contrib/completion/bash/_todo
56 substituteInPlace contrib/completion/zsh/_todo --replace "jq " "${lib.getExe jq} "
57 installShellCompletion --zsh contrib/completion/zsh/_todo
61 # Testing of the CLI part and output
62 "test_color_due_dates"
64 "test_default_command"
66 "test_missing_cache_dir"
67 "test_sorting_null_values"
69 # Tests are sensitive to performance
73 pythonImportsCheck = [
78 homepage = "https://github.com/pimutils/todoman";
79 description = "Standards-based task manager based on iCalendar";
81 Todoman is a simple, standards-based, cli todo (aka task) manager. Todos
82 are stored into iCalendar files, which means you can sync them via CalDAV
83 using, for example, vdirsyncer.
85 Todos are read from individual ics files from the configured directory.
86 This matches the vdir specification. There is support for the most common TODO
87 features for now (summary, description, location, due date and priority) for
89 Unsupported fields may not be shown but are never deleted or altered.
91 changelog = "https://todoman.readthedocs.io/en/stable/changelog.html#v${
92 builtins.replaceStrings [ "." ] [ "-" ] version
94 license = lib.licenses.isc;
95 maintainers = with lib.maintainers; [