2022-10-17 16:12:09 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2020-04-26 08:03:11 +00:00
|
|
|
, glibcLocales
|
|
|
|
, installShellFiles
|
|
|
|
, jq
|
2022-10-17 16:12:09 +00:00
|
|
|
, python3
|
2020-04-26 08:03:11 +00:00
|
|
|
}:
|
2022-10-17 16:12:09 +00:00
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2018-08-24 10:22:05 +00:00
|
|
|
pname = "todoman";
|
2021-12-14 10:35:42 +00:00
|
|
|
version = "4.1.0";
|
2022-10-17 16:12:09 +00:00
|
|
|
format = "setuptools";
|
2018-08-24 10:22:05 +00:00
|
|
|
|
2022-10-17 16:12:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pimutils";
|
|
|
|
repo = pname;
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-MItFZ+4Q7UKeIWHl8KFiWOLNgFcfb0h1YWjPd+g48Wg=";
|
2018-08-24 10:22:05 +00:00
|
|
|
};
|
|
|
|
|
2021-04-19 22:17:29 +00:00
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
|
2020-04-26 08:03:11 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
2022-10-17 16:12:09 +00:00
|
|
|
] ++ (with python3.pkgs; [
|
2021-04-19 22:17:29 +00:00
|
|
|
setuptools-scm
|
2022-10-17 16:12:09 +00:00
|
|
|
]);
|
2021-11-10 00:01:04 +00:00
|
|
|
|
2020-04-26 08:03:11 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
atomicwrites
|
|
|
|
click
|
|
|
|
click-log
|
|
|
|
click-repl
|
|
|
|
humanize
|
|
|
|
icalendar
|
|
|
|
parsedatetime
|
|
|
|
python-dateutil
|
|
|
|
pyxdg
|
|
|
|
tabulate
|
|
|
|
urwid
|
|
|
|
];
|
2018-08-24 10:22:05 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
2020-04-26 08:03:11 +00:00
|
|
|
flake8
|
|
|
|
flake8-import-order
|
|
|
|
freezegun
|
|
|
|
hypothesis
|
2021-11-10 00:01:04 +00:00
|
|
|
pytestCheckHook
|
2020-04-26 08:06:01 +00:00
|
|
|
glibcLocales
|
2020-04-26 08:03:11 +00:00
|
|
|
];
|
2018-08-24 10:22:05 +00:00
|
|
|
|
2020-04-26 08:06:01 +00:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
2018-08-24 10:22:05 +00:00
|
|
|
|
2021-11-10 00:01:04 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace " --cov=todoman --cov-report=term-missing" ""
|
|
|
|
'';
|
|
|
|
|
2020-02-24 12:00:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --bash contrib/completion/bash/_todo
|
|
|
|
substituteInPlace contrib/completion/zsh/_todo --replace "jq " "${jq}/bin/jq "
|
|
|
|
installShellCompletion --zsh contrib/completion/zsh/_todo
|
|
|
|
'';
|
|
|
|
|
2021-11-10 00:01:04 +00:00
|
|
|
disabledTests = [
|
|
|
|
# Testing of the CLI part and output
|
|
|
|
"test_color_due_dates"
|
|
|
|
"test_color_flag"
|
2023-02-19 17:05:24 +00:00
|
|
|
"test_datetime_serialization" # Will be fixed in versions after 4.1.0
|
2021-11-10 00:01:04 +00:00
|
|
|
"test_default_command"
|
|
|
|
"test_main"
|
|
|
|
"test_missing_cache_dir"
|
|
|
|
"test_sorting_null_values"
|
|
|
|
"test_xdg_existant"
|
2022-10-17 16:12:09 +00:00
|
|
|
# Tests are sensitive to performance
|
|
|
|
"test_sorting_fields"
|
2021-11-10 00:01:04 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"todoman"
|
|
|
|
];
|
2018-08-24 10:22:05 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/pimutils/todoman";
|
2018-08-24 10:22:05 +00:00
|
|
|
description = "Standards-based task manager based on iCalendar";
|
|
|
|
longDescription = ''
|
2022-10-17 16:12:09 +00:00
|
|
|
Todoman is a simple, standards-based, cli todo (aka task) manager. Todos
|
|
|
|
are stored into iCalendar files, which means you can sync them via CalDAV
|
2018-08-24 10:22:05 +00:00
|
|
|
using, for example, vdirsyncer.
|
|
|
|
|
|
|
|
Todos are read from individual ics files from the configured directory.
|
2022-10-17 16:12:09 +00:00
|
|
|
This matches the vdir specification. There is support for the most common TODO
|
2018-08-24 10:22:05 +00:00
|
|
|
features for now (summary, description, location, due date and priority) for
|
2022-10-17 16:12:09 +00:00
|
|
|
now.
|
2018-08-24 10:22:05 +00:00
|
|
|
Unsupported fields may not be shown but are never deleted or altered.
|
|
|
|
'';
|
2021-11-15 14:45:00 +00:00
|
|
|
changelog = "https://github.com/pimutils/todoman/raw/v${version}/CHANGELOG.rst";
|
2018-08-24 22:13:47 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
2018-08-24 10:22:05 +00:00
|
|
|
};
|
|
|
|
}
|