todoman: init at 3.4.0
This commit is contained in:
parent
1bc48e63fd
commit
4768d2e13a
56
pkgs/applications/office/todoman/default.nix
Normal file
56
pkgs/applications/office/todoman/default.nix
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
{ stdenv, python3, glibcLocales }:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (python3.pkgs) buildPythonApplication fetchPypi;
|
||||||
|
in
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "todoman";
|
||||||
|
version = "3.4.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "09441fdrwz2irsbrxnpwys51372z6rn6gnxn87p95r3fv9gmh0fw";
|
||||||
|
};
|
||||||
|
|
||||||
|
LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
|
||||||
|
"${glibcLocales}/lib/locale/locale-archive";
|
||||||
|
LANG = "en_US.UTF-8";
|
||||||
|
LC_TYPE = "en_US.UTF-8";
|
||||||
|
|
||||||
|
buildInputs = [ glibcLocales ];
|
||||||
|
propagatedBuildInputs = with python3.pkgs;
|
||||||
|
[ atomicwrites click click-log configobj humanize icalendar parsedatetime
|
||||||
|
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" ];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
# Remove one failing test that only checks whether the command line works
|
||||||
|
rm tests/test_main.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/pimutils/todoman;
|
||||||
|
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
|
||||||
|
'';
|
||||||
|
license = stdenv.lib.licenses.isc;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ leenaars ];
|
||||||
|
};
|
||||||
|
}
|
@ -18784,6 +18784,8 @@ with pkgs;
|
|||||||
|
|
||||||
todo-txt-cli = callPackage ../applications/office/todo.txt-cli { };
|
todo-txt-cli = callPackage ../applications/office/todo.txt-cli { };
|
||||||
|
|
||||||
|
todoman = callPackage ../applications/office/todoman { };
|
||||||
|
|
||||||
toggldesktop = libsForQt5.callPackage ../applications/misc/toggldesktop { };
|
toggldesktop = libsForQt5.callPackage ../applications/misc/toggldesktop { };
|
||||||
|
|
||||||
tomahawk = callPackage ../applications/audio/tomahawk {
|
tomahawk = callPackage ../applications/audio/tomahawk {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user