Merge pull request #13643 from DamienCassou/khal-python3-only

khal: force Python3
This commit is contained in:
Domen Kožar 2016-03-03 14:21:21 +00:00
commit ea863b8cc6

View file

@ -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
];