khard: 0.11.4 -> 0.12.2

+5 -3
+5 -3
pkgs/applications/misc/khard/default.nix
··· 1 { stdenv, fetchurl, fetchFromGitHub, glibcLocales, python3Packages }: 2 3 python3Packages.buildPythonApplication rec { 4 - version = "0.11.4"; 5 name = "khard-${version}"; 6 namePrefix = ""; 7 8 src = fetchurl { 9 url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz"; 10 - sha256 = "1hngg3z5cdjny7wdf2mf9wv35ffx7ivpq6mx7kgqf40fr5905l0r"; 11 }; 12 13 # setup.py reads the UTF-8 encoded readme. ··· 19 configobj 20 vobject 21 argparse 22 - pyyaml 23 ]; 24 25 # Fails; but there are no tests anyway.
··· 1 { stdenv, fetchurl, fetchFromGitHub, glibcLocales, python3Packages }: 2 3 python3Packages.buildPythonApplication rec { 4 + version = "0.12.2"; 5 name = "khard-${version}"; 6 namePrefix = ""; 7 8 src = fetchurl { 9 url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz"; 10 + sha256 = "0lxcvzmafpvqcifgq2xjh1ca07z0vhihn5jnw8zrpmsqdc9p6b4j"; 11 }; 12 13 # setup.py reads the UTF-8 encoded readme. ··· 19 configobj 20 vobject 21 argparse 22 + ruamel_yaml 23 + ruamel_base 24 + unidecode 25 ]; 26 27 # Fails; but there are no tests anyway.