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