Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / yokadi / default.nix
blob10d519efa45c229da23ebdf018f0936c9b65e425
1 { lib, fetchurl, buildPythonApplication, python-dateutil,
2   sqlalchemy, setproctitle, icalendar }:
4 buildPythonApplication rec {
5   pname = "yokadi";
6   version = "1.2.0";
8   src = fetchurl {
9     url = "https://yokadi.github.io/download/${pname}-${version}.tar.gz";
10     sha256 = "681c8aa52b2e4b5255e1311e76b4b81dcb63ee7f6ca3a47178e684c06baf330f";
11   };
13   propagatedBuildInputs = [
14     python-dateutil
15     sqlalchemy
16     setproctitle
17     icalendar
18   ];
20   # Yokadi doesn't have any tests
21   doCheck = false;
23   meta = with lib; {
24     description = "A command line oriented, sqlite powered, todo-list";
25     homepage = "https://yokadi.github.io/index.html";
26     license = licenses.gpl3Plus;
27     maintainers = [ maintainers.nkpvk ];
28   };