khard: 0.9.0 -> 0.11.1

This commit is contained in:
Gabriel Ebner 2016-07-31 10:14:13 +02:00
parent 4db39e8d0f
commit b714fdb574

View File

@ -1,16 +1,20 @@
{ stdenv, fetchurl, pkgs, python2Packages }: { stdenv, fetchurl, glibcLocales, python3Packages }:
python2Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
version = "0.9.0"; version = "0.11.1";
name = "khard-${version}"; name = "khard-${version}";
namePrefix = ""; namePrefix = "";
src = fetchurl { src = fetchurl {
url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz"; url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz";
sha256 = "1cj6rlvbk05cfjkl1lnyvq12sb847jjwqy5j8906p2b2x4wq72qi"; sha256 = "0055xx9icmsr6l7v0iqrndmygygdpdv10550w6pyrb96svzhry27";
}; };
propagatedBuildInputs = with python2Packages; [ # setup.py reads the UTF-8 encoded readme.
LC_ALL = "en_US.UTF-8";
buildInputs = [ glibcLocales ];
propagatedBuildInputs = with python3Packages; [
atomicwrites atomicwrites
configobj configobj
vobject vobject
@ -18,6 +22,9 @@ python2Packages.buildPythonApplication rec {
pyyaml pyyaml
]; ];
# Fails; but there are no tests anyway.
doCheck = false;
meta = { meta = {
homepage = https://github.com/scheibler/khard; homepage = https://github.com/scheibler/khard;
description = "Console carddav client"; description = "Console carddav client";