yokadi: 1.2.0 -> 1.3.0 (#414125)

authored by Peder Bergebakken Sundt and committed by GitHub fb884ed4 cb42b28a

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