2021-01-25 09:26:54 +01:00
|
|
|
|
{ lib
|
2020-04-26 10:03:11 +02:00
|
|
|
|
, python3
|
|
|
|
|
, glibcLocales
|
|
|
|
|
, installShellFiles
|
|
|
|
|
, jq
|
|
|
|
|
}:
|
2018-08-24 12:22:05 +02:00
|
|
|
|
|
|
|
|
|
let
|
2021-04-20 00:17:29 +02:00
|
|
|
|
inherit (python3.pkgs) buildPythonApplication fetchPypi setuptools-scm;
|
2018-08-24 12:22:05 +02:00
|
|
|
|
in
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
|
pname = "todoman";
|
2021-08-26 09:02:50 +02:00
|
|
|
|
version = "4.0.0";
|
2018-08-24 12:22:05 +02:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2021-08-26 09:02:50 +02:00
|
|
|
|
sha256 = "4c4d0c6533da8d553f3dd170c9c4ff3752eb11fd7177ee391414a39adfef60ad";
|
2018-08-24 12:22:05 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-04-20 00:17:29 +02:00
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
|
|
2020-04-26 10:03:11 +02:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
installShellFiles
|
2021-04-20 00:17:29 +02:00
|
|
|
|
setuptools-scm
|
2020-04-26 10:03:11 +02:00
|
|
|
|
];
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
|
atomicwrites
|
|
|
|
|
click
|
|
|
|
|
click-log
|
|
|
|
|
click-repl
|
|
|
|
|
humanize
|
|
|
|
|
icalendar
|
|
|
|
|
parsedatetime
|
|
|
|
|
python-dateutil
|
|
|
|
|
pyxdg
|
|
|
|
|
tabulate
|
|
|
|
|
urwid
|
|
|
|
|
];
|
2018-08-24 12:22:05 +02:00
|
|
|
|
|
2020-04-26 10:03:11 +02:00
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
|
|
|
flake8
|
|
|
|
|
flake8-import-order
|
|
|
|
|
freezegun
|
|
|
|
|
hypothesis
|
|
|
|
|
pytest
|
2021-07-20 23:07:53 +02:00
|
|
|
|
pytest-runner
|
2021-07-20 22:42:24 +02:00
|
|
|
|
pytest-cov
|
2020-04-26 10:06:01 +02:00
|
|
|
|
glibcLocales
|
2020-04-26 10:03:11 +02:00
|
|
|
|
];
|
2018-08-24 12:22:05 +02:00
|
|
|
|
|
2020-04-26 10:06:01 +02:00
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
2018-08-24 12:22:05 +02:00
|
|
|
|
|
2020-02-24 13:00:00 +01:00
|
|
|
|
postInstall = ''
|
|
|
|
|
installShellCompletion --bash contrib/completion/bash/_todo
|
|
|
|
|
substituteInPlace contrib/completion/zsh/_todo --replace "jq " "${jq}/bin/jq "
|
|
|
|
|
installShellCompletion --zsh contrib/completion/zsh/_todo
|
|
|
|
|
'';
|
|
|
|
|
|
2018-08-24 12:22:05 +02:00
|
|
|
|
preCheck = ''
|
|
|
|
|
# Remove one failing test that only checks whether the command line works
|
|
|
|
|
rm tests/test_main.py
|
2018-10-27 18:04:07 +02:00
|
|
|
|
rm tests/test_cli.py
|
2018-08-24 12:22:05 +02:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "https://github.com/pimutils/todoman";
|
2018-08-24 12:22:05 +02: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
|
|
|
|
|
'';
|
2018-08-25 00:13:47 +02:00
|
|
|
|
license = licenses.isc;
|
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
|
platforms = platforms.linux;
|
2018-08-24 12:22:05 +02:00
|
|
|
|
};
|
|
|
|
|
}
|