2021-01-25 08:26:54 +00:00
|
|
|
|
{ lib
|
2020-04-26 08:03:11 +00:00
|
|
|
|
, python3
|
|
|
|
|
, glibcLocales
|
|
|
|
|
, installShellFiles
|
|
|
|
|
, jq
|
|
|
|
|
}:
|
2018-08-24 10:22:05 +00:00
|
|
|
|
let
|
2021-04-19 22:17:29 +00:00
|
|
|
|
inherit (python3.pkgs) buildPythonApplication fetchPypi setuptools-scm;
|
2018-08-24 10:22:05 +00:00
|
|
|
|
in
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
|
pname = "todoman";
|
2021-11-15 14:44:47 +00:00
|
|
|
|
version = "4.0.1";
|
2018-08-24 10:22:05 +00:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2021-11-15 14:44:47 +00:00
|
|
|
|
sha256 = "ec88f8009321e77deb0ae682f7d036c139edf4175f8413011b532905c6e7d2b1";
|
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
|
2021-04-19 22:17:29 +00:00
|
|
|
|
setuptools-scm
|
2020-04-26 08:03:11 +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
|
|
|
|
|
2020-04-26 08:03:11 +00:00
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
|
|
|
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"
|
|
|
|
|
"test_default_command"
|
|
|
|
|
"test_main"
|
|
|
|
|
"test_missing_cache_dir"
|
|
|
|
|
"test_sorting_null_values"
|
|
|
|
|
"test_xdg_existant"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
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 = ''
|
|
|
|
|
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
|
|
|
|
|
using, for example, vdirsyncer.
|
|
|
|
|
|
|
|
|
|
Todos are read from individual ics files from the configured directory.
|
|
|
|
|
This matches the vdir specification. There’s support for the most common TODO
|
|
|
|
|
features for now (summary, description, location, due date and priority) for
|
|
|
|
|
now. Runs on any Unix-like OS. It’s been tested on GNU/Linux, BSD and macOS.
|
|
|
|
|
Unsupported fields may not be shown but are never deleted or altered.
|
|
|
|
|
|
|
|
|
|
Todoman is part of the pimutils project
|
|
|
|
|
'';
|
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
|
|
|
|
};
|
|
|
|
|
}
|