Merge pull request #7872 from matthiasbeyer/fix-khal_python
Fix: khal 0.4.0 does not work with python 3
This commit is contained in:
commit
07cdc40222
3 changed files with 12 additions and 18 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchurl, pythonPackages }:
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
version = "0.4.3";
|
||||
|
@ -10,10 +10,9 @@ pythonPackages.buildPythonPackage rec {
|
|||
sha256 = "0jrxmq8lq0dvqflmh42hhyvc3jjrg1cg3gzfhdcsskj9zz0m6wai";
|
||||
};
|
||||
|
||||
pythonPath = with pythonPackages; [
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
icalendar
|
||||
click
|
||||
requests
|
||||
lxml
|
||||
setuptools
|
||||
requests_toolbelt
|
||||
|
@ -21,12 +20,11 @@ pythonPackages.buildPythonPackage rec {
|
|||
atomicwrites
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/untitaker/vdirsyncer;
|
||||
description = "Synchronize calendars and contacts";
|
||||
maintainers = [ lib.maintainers.matthiasbeyer ];
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
|
||||
platforms = platforms.all;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -11615,9 +11615,7 @@ let
|
|||
|
||||
keymon = callPackage ../applications/video/key-mon { };
|
||||
|
||||
khal = callPackage ../applications/misc/khal {
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
khal = callPackage ../applications/misc/khal { };
|
||||
|
||||
kid3 = callPackage ../applications/audio/kid3 {
|
||||
qt = qt4;
|
||||
|
@ -12689,9 +12687,7 @@ let
|
|||
|
||||
vcprompt = callPackage ../applications/version-management/vcprompt { };
|
||||
|
||||
vdirsyncer = callPackage ../tools/misc/vdirsyncer {
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
vdirsyncer = callPackage ../tools/misc/vdirsyncer { };
|
||||
|
||||
vdpauinfo = callPackage ../tools/X11/vdpauinfo { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue