menumaker: 0.99.12 -> 0.99.13 and switch to python3

according to the homepage the niminum python version is
2.7 but it should also run on python3

Artturin e2ccaaa9 b5afec62

+4 -4
+4 -4
pkgs/applications/misc/menumaker/default.nix
··· 1 - { lib, fetchurl, python2Packages }: 1 + { lib, fetchurl, python3Packages }: 2 2 3 - python2Packages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "menumaker"; 5 - version = "0.99.12"; 5 + version = "0.99.13"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/menumaker/${pname}-${version}.tar.gz"; 9 - sha256 = "034v5204bsgkzzk6zfa5ia63q95gln47f7hwf96yvad5hrhmd8z3"; 9 + sha256 = "sha256-JBXs5hnt1snbnB1hi7q7HBI7rNp0OoalLeIM0uJCdkE="; 10 10 }; 11 11 12 12 format = "other";