nixpkgs/pkgs/applications/misc/yokadi/default.nix

30 lines
727 B
Nix
Raw Normal View History

2018-02-12 16:39:27 +00:00
{ stdenv, fetchurl, buildPythonApplication, 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 = [
dateutil
sqlalchemy
setproctitle
icalendar
];
# Yokadi doesn't have any tests
doCheck = false;
meta = with stdenv.lib; {
description = "A command line oriented, sqlite powered, todo-list";
homepage = https://yokadi.github.io/index.html;
license = licenses.gpl3Plus;
maintainers = [ maintainers.nipav ];
};
}