2020-02-24 12:00:00 +00:00
|
|
|
|
{ stdenv, python3, glibcLocales, installShellFiles, jq }:
|
2018-08-24 10:22:05 +00:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
inherit (python3.pkgs) buildPythonApplication fetchPypi;
|
|
|
|
|
in
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
|
pname = "todoman";
|
2019-10-23 21:38:56 +00:00
|
|
|
|
version = "3.7.0";
|
2018-08-24 10:22:05 +00:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2019-10-23 21:38:56 +00:00
|
|
|
|
sha256 = "16brw2zhm5vamffin6qjb0lxjlj3ba40vaficl851nw2xh2mrdhy";
|
2018-08-24 10:22:05 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
|
|
|
|
|
"${glibcLocales}/lib/locale/locale-archive";
|
|
|
|
|
LANG = "en_US.UTF-8";
|
|
|
|
|
LC_TYPE = "en_US.UTF-8";
|
|
|
|
|
|
2020-02-24 12:00:00 +00:00
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2018-08-24 10:22:05 +00:00
|
|
|
|
buildInputs = [ glibcLocales ];
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs;
|
2019-09-09 21:59:21 +00:00
|
|
|
|
[ atomicwrites click click-log click-repl configobj humanize icalendar parsedatetime
|
2018-08-24 10:22:05 +00:00
|
|
|
|
python-dateutil pyxdg tabulate urwid ];
|
|
|
|
|
|
|
|
|
|
checkInputs = with python3.pkgs;
|
|
|
|
|
[ flake8 flake8-import-order freezegun hypothesis pytest pytestrunner pytestcov ];
|
|
|
|
|
|
|
|
|
|
makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive"
|
|
|
|
|
"--set CHARSET en_us.UTF-8" ];
|
|
|
|
|
|
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
|
|
|
|
|
'';
|
|
|
|
|
|
2018-08-24 10:22:05 +00:00
|
|
|
|
preCheck = ''
|
|
|
|
|
# Remove one failing test that only checks whether the command line works
|
|
|
|
|
rm tests/test_main.py
|
2018-10-27 16:04:07 +00:00
|
|
|
|
rm tests/test_cli.py
|
2018-08-24 10:22:05 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2018-08-24 22:13:47 +00:00
|
|
|
|
meta = with stdenv.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
|
|
|
|
|
'';
|
2018-08-24 22:13:47 +00:00
|
|
|
|
license = licenses.isc;
|
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
|
platforms = platforms.linux;
|
2018-08-24 10:22:05 +00:00
|
|
|
|
};
|
|
|
|
|
}
|