youki: add systemd build flag (#355607)
[NixPkgs.git] / pkgs / applications / misc / yokadi / default.nix
blob55acd53fd1e0fdfd87b7747e4838b42a8b36399a
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 = "Command line oriented, sqlite powered, todo-list";
25     homepage = "https://yokadi.github.io/index.html";
26     license = licenses.gpl3Plus;
27     maintainers = [ maintainers.nkpvk ];
28   };