summary refs log tree commit diff
path: root/pkgs/applications/misc/khal
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2016-03-03 15:17:37 +0100
committerDamien Cassou <damien@cassou.me>2016-03-03 15:17:37 +0100
commita0b1b032b6345bdf7d738a4add8bfcb83a4f1103 (patch)
tree1d6324cc2279b8d83116298f3e976962efa12e46 /pkgs/applications/misc/khal
parent40c586b7ce2c559374df435f46d673baf711c543 (diff)
downloadnixpkgs-a0b1b032b6345bdf7d738a4add8bfcb83a4f1103.tar
nixpkgs-a0b1b032b6345bdf7d738a4add8bfcb83a4f1103.tar.gz
nixpkgs-a0b1b032b6345bdf7d738a4add8bfcb83a4f1103.tar.bz2
nixpkgs-a0b1b032b6345bdf7d738a4add8bfcb83a4f1103.tar.lz
nixpkgs-a0b1b032b6345bdf7d738a4add8bfcb83a4f1103.tar.xz
nixpkgs-a0b1b032b6345bdf7d738a4add8bfcb83a4f1103.tar.zst
nixpkgs-a0b1b032b6345bdf7d738a4add8bfcb83a4f1103.zip
khal: force Python3
Both the README and setup.py agree that khal is only compatible with
Python 3.
Diffstat (limited to 'pkgs/applications/misc/khal')
-rw-r--r--pkgs/applications/misc/khal/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
index 52a4f0dee75..ab55e3618ec 100644
--- a/pkgs/applications/misc/khal/default.nix
+++ b/pkgs/applications/misc/khal/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pkgs, pythonPackages }:
+{ stdenv, fetchurl, pkgs, python3Packages }:
 
-pythonPackages.buildPythonApplication rec {
+python3Packages.buildPythonApplication rec {
   version = "0.7.0";
   name = "khal-${version}";
 
@@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication rec {
     sha256 = "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66";
   };
 
-  propagatedBuildInputs = with pythonPackages; [
+  propagatedBuildInputs = with python3Packages; [
     atomicwrites
     click
     configobj
@@ -22,7 +22,6 @@ pythonPackages.buildPythonApplication rec {
     requests_toolbelt
     tzlocal
     urwid
-    python.modules.sqlite3
     pkginfo
   ];