summary refs log tree commit diff
path: root/pkgs/applications/misc/yokadi/default.nix
blob: dec861009eb4ea3965622aa030e66c823ecd8fdf (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
30
{ stdenv, fetchurl, buildPythonApplication, dateutil,
  sqlalchemy, setproctitle, icalendar, pycrypto }:

buildPythonApplication rec {
  pname = "yokadi";
  version = "1.1.1";

  src = fetchurl {
    url = "https://yokadi.github.io/download/${pname}-${version}.tar.bz2";
    sha256 = "af201da66fd3a8435b2ccd932082ab9ff13f5f2e3d6cd3624f1ab81c577aaf17";
  };

  propagatedBuildInputs = [
    dateutil
    sqlalchemy
    setproctitle
    icalendar
    pycrypto
  ];

  # 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 ];
  };
}