blob: e31a69963ff0902906acc3fa57fde81f9b874899 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ lib, fetchurl, buildPythonApplication, dateutil,
sqlalchemy, setproctitle, icalendar }:
buildPythonApplication rec {
pname = "yokadi";
version = "1.2.0";
src = fetchurl {
url = "https://yokadi.github.io/download/${pname}-${version}.tar.gz";
sha256 = "681c8aa52b2e4b5255e1311e76b4b81dcb63ee7f6ca3a47178e684c06baf330f";
};
propagatedBuildInputs = [
dateutil
sqlalchemy
setproctitle
icalendar
];
# Yokadi doesn't have any tests
doCheck = false;
meta = with lib; {
description = "A command line oriented, sqlite powered, todo-list";
homepage = "https://yokadi.github.io/index.html";
license = licenses.gpl3Plus;
maintainers = [ maintainers.nipav ];
};
}
|