Add package: khal
This commit is contained in:
parent
bd81885f70
commit
90b74276cb
34
pkgs/applications/misc/khal/default.nix
Normal file
34
pkgs/applications/misc/khal/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -10675,6 +10675,10 @@ let
|
||||
|
||||
keymon = callPackage ../applications/video/key-mon { };
|
||||
|
||||
khal = callPackage ../applications/misc/khal {
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
kid3 = callPackage ../applications/audio/kid3 {
|
||||
qt = qt4;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user