2015-01-30 15:57:29 +00:00
|
|
|
{ stdenv, fetchurl, pkgs, pythonPackages }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
2015-07-21 17:00:03 +00:00
|
|
|
version = "0.6.0";
|
2015-01-30 15:57:29 +00:00
|
|
|
name = "khal-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-07-21 16:59:40 +00:00
|
|
|
url = "https://pypi.python.org/packages/source/k/khal/khal-${version}.tar.gz";
|
2015-07-21 17:00:03 +00:00
|
|
|
sha256 = "16nsib70rczln0hrh93bas58lr8crvq8yipj7qnfs4hbs9b8sbhs";
|
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-29 23:04:56 +00:00
|
|
|
python.modules.sqlite3
|
2015-07-21 17:00:03 +00:00
|
|
|
pkginfo
|
2015-01-30 15:57:29 +00:00
|
|
|
];
|
|
|
|
|
2015-05-29 23:26:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-01-30 15:57:29 +00:00
|
|
|
homepage = http://lostpackets.de/khal/;
|
|
|
|
description = "CLI calendar application";
|
2015-05-29 23:26:29 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
|
2015-01-30 15:57:29 +00:00
|
|
|
};
|
|
|
|
}
|