summary refs log tree commit diff
path: root/pkgs/applications/misc/khal
diff options
context:
space:
mode:
authorJascha Geerds <jg@ekby.de>2015-06-16 15:06:42 +0200
committerJascha Geerds <jg@ekby.de>2015-06-16 15:06:42 +0200
commit07cdc40222755dc32b3b97cfb6a2da05752eac90 (patch)
tree3023494a81cda891ac18073b63d1684cd3af33db /pkgs/applications/misc/khal
parentd2ad04cd382e097eb72f4084deee9842aa362ba1 (diff)
parent2e583a4963f03429ca5984946d1e7cad4326553b (diff)
downloadnixpkgs-07cdc40222755dc32b3b97cfb6a2da05752eac90.tar
nixpkgs-07cdc40222755dc32b3b97cfb6a2da05752eac90.tar.gz
nixpkgs-07cdc40222755dc32b3b97cfb6a2da05752eac90.tar.bz2
nixpkgs-07cdc40222755dc32b3b97cfb6a2da05752eac90.tar.lz
nixpkgs-07cdc40222755dc32b3b97cfb6a2da05752eac90.tar.xz
nixpkgs-07cdc40222755dc32b3b97cfb6a2da05752eac90.tar.zst
nixpkgs-07cdc40222755dc32b3b97cfb6a2da05752eac90.zip
Merge pull request #7872 from matthiasbeyer/fix-khal_python
Fix: khal 0.4.0 does not work with python 3
Diffstat (limited to 'pkgs/applications/misc/khal')
-rw-r--r--pkgs/applications/misc/khal/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
index 85720f64483..7f7f1308eb1 100644
--- a/pkgs/applications/misc/khal/default.nix
+++ b/pkgs/applications/misc/khal/default.nix
@@ -22,13 +22,13 @@ pythonPackages.buildPythonPackage rec {
     requests_toolbelt
     tzlocal
     urwid
+    python.modules.sqlite3
   ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://lostpackets.de/khal/;
     description = "CLI calendar application";
-    license = stdenv.lib.licenses.mit;
-    maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+    license = licenses.mit;
+    maintainers = with maintainers; [ matthiasbeyer jgeerds ];
   };
 }
-