2021-07-03 12:37:24 +01:00
|
|
|
{ lib, fetchurl, buildPythonApplication, python-dateutil,
|
2019-02-25 12:10:59 +00:00
|
|
|
sqlalchemy, setproctitle, icalendar }:
|
2018-02-12 16:39:27 +00:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "yokadi";
|
2019-02-25 12:10:59 +00:00
|
|
|
version = "1.2.0";
|
2018-02-12 16:39:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-25 12:10:59 +00:00
|
|
|
url = "https://yokadi.github.io/download/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "681c8aa52b2e4b5255e1311e76b4b81dcb63ee7f6ca3a47178e684c06baf330f";
|
2018-02-12 16:39:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2021-07-03 12:37:24 +01:00
|
|
|
python-dateutil
|
2018-02-12 16:39:27 +00:00
|
|
|
sqlalchemy
|
|
|
|
setproctitle
|
|
|
|
icalendar
|
|
|
|
];
|
|
|
|
|
|
|
|
# Yokadi doesn't have any tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-02-12 16:39:27 +00:00
|
|
|
description = "A command line oriented, sqlite powered, todo-list";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://yokadi.github.io/index.html";
|
2018-02-12 16:39:27 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2021-06-02 20:06:30 +01:00
|
|
|
maintainers = [ maintainers.nkpvk ];
|
2018-02-12 16:39:27 +00:00
|
|
|
};
|
|
|
|
}
|