nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchurl,
4 buildPythonApplication,
5 python-dateutil,
6 sqlalchemy,
7 setproctitle,
8 icalendar,
9 colorama,
10}:
11
12buildPythonApplication rec {
13 pname = "yokadi";
14 version = "1.3.0";
15 format = "setuptools";
16
17 src = fetchurl {
18 url = "https://yokadi.github.io/download/${pname}-${version}.tar.gz";
19 hash = "sha256-zF2ffHeU+i7wzu1u4DhQ5zJXr8AjXboiyFAisXNX6TM=";
20 };
21
22 dependencies = [
23 python-dateutil
24 sqlalchemy
25 setproctitle
26 icalendar
27 colorama
28 ];
29
30 # Yokadi doesn't have any tests
31 doCheck = false;
32
33 meta = {
34 description = "Command line oriented, sqlite powered, todo-list";
35 homepage = "https://yokadi.github.io/index.html";
36 mainProgram = "yokadi";
37 license = lib.licenses.gpl3Plus;
38 maintainers = [ lib.maintainers.nkpvk ];
39 };
40}