nixpkgs/pkgs/applications/misc/khal/default.nix

35 lines
757 B
Nix
Raw Normal View History

2015-01-30 15:57:29 +00:00
{ stdenv, fetchurl, pkgs, pythonPackages }:
pythonPackages.buildPythonPackage rec {
2015-06-16 14:12:37 +01:00
version = "0.5.0";
2015-01-30 15:57:29 +00:00
name = "khal-${version}";
src = fetchurl {
url = "https://github.com/geier/khal/archive/v${version}.tar.gz";
2015-06-16 14:12:37 +01:00
sha256 = "1rjs5s8ky4n628rs6l5ggaj2abb4kq2avvxmimjjgxz3zh9xlz6s";
2015-01-30 15:57:29 +00:00
};
propagatedBuildInputs = with pythonPackages; [
atomicwrites
click
configobj
dateutil
icalendar
lxml
pkgs.vdirsyncer
pytz
pyxdg
requests_toolbelt
tzlocal
urwid
2015-05-30 00:04:56 +01:00
python.modules.sqlite3
2015-01-30 15:57:29 +00:00
];
meta = with stdenv.lib; {
2015-01-30 15:57:29 +00:00
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
2015-01-30 15:57:29 +00:00
};
}