Merge pull request #6313 from matthiasbeyer/add-khal

Add package: khal
This commit is contained in:
Pascal Wittmann 2015-03-08 21:22:12 +00:00
commit 228183f4f1
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ stdenv, fetchurl, pkgs, pythonPackages }:
pythonPackages.buildPythonPackage rec {
version = "0.4.0";
name = "khal-${version}";
src = fetchurl {
url = "https://github.com/geier/khal/archive/v${version}.tar.gz";
sha256 = "0d32miq55cly4q3raxkw3xpq4d5y3hvzaqvy066nv35bdlpafxi1";
};
propagatedBuildInputs = with pythonPackages; [
atomicwrites
click
configobj
dateutil
icalendar
lxml
pkgs.vdirsyncer
pytz
pyxdg
requests_toolbelt
tzlocal
urwid
];
meta = {
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
};
}

View File

@ -10729,6 +10729,10 @@ let
keymon = callPackage ../applications/video/key-mon { };
khal = callPackage ../applications/misc/khal {
pythonPackages = python3Packages;
};
kid3 = callPackage ../applications/audio/kid3 {
qt = qt4;
};