summary refs log tree commit diff
path: root/pkgs/applications/misc/khard
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-02-02 21:19:35 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-02-02 21:19:35 +0100
commit51e0077e79975649df8c0127a39065cf001c599e (patch)
treec90f26f3154505a8dd83992d59d80e2e75465a3c /pkgs/applications/misc/khard
parent1f2b819783d00f876865aee20cb63c477331a901 (diff)
downloadnixpkgs-51e0077e79975649df8c0127a39065cf001c599e.tar
nixpkgs-51e0077e79975649df8c0127a39065cf001c599e.tar.gz
nixpkgs-51e0077e79975649df8c0127a39065cf001c599e.tar.bz2
nixpkgs-51e0077e79975649df8c0127a39065cf001c599e.tar.lz
nixpkgs-51e0077e79975649df8c0127a39065cf001c599e.tar.xz
nixpkgs-51e0077e79975649df8c0127a39065cf001c599e.tar.zst
nixpkgs-51e0077e79975649df8c0127a39065cf001c599e.zip
khard: 0.6.3 -> 0.8.1
Diffstat (limited to 'pkgs/applications/misc/khard')
-rw-r--r--pkgs/applications/misc/khard/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix
index ac566c9609b..0c88314ed02 100644
--- a/pkgs/applications/misc/khard/default.nix
+++ b/pkgs/applications/misc/khard/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, pkgs, pythonPackages }:
 
 pythonPackages.buildPythonPackage rec {
-  version = "0.6.3";
+  version = "0.8.1";
   name = "khard-${version}";
   namePrefix = "";
 
   src = fetchurl {
     url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz";
-    sha256 = "1dn1v4ycgqbq8vknz1dy710asq8cizxmzaynn69xknwkpgda7fm9";
+    sha256 = "13axfrs96isirx0c483545xdmjwwfq1k7yy92xpk7l184v71rgi1";
   };
 
   propagatedBuildInputs = with pythonPackages; [
@@ -18,6 +18,7 @@ pythonPackages.buildPythonPackage rec {
 
   buildInputs = with pythonPackages; [
     pkgs.vdirsyncer
+    pyyaml
   ];
 
   meta = {