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

35 lines
762 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgs, python3Packages }:
2015-01-30 07:57:29 -08:00
python3Packages.buildPythonApplication rec {
2015-12-13 17:05:01 -08:00
version = "0.7.0";
2015-01-30 07:57:29 -08:00
name = "khal-${version}";
src = fetchurl {
2015-07-21 09:59:40 -07:00
url = "https://pypi.python.org/packages/source/k/khal/khal-${version}.tar.gz";
2015-12-13 17:05:01 -08:00
sha256 = "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66";
2015-01-30 07:57:29 -08:00
};
propagatedBuildInputs = with python3Packages; [
2015-01-30 07:57:29 -08:00
atomicwrites
click
configobj
dateutil
icalendar
lxml
pkgs.vdirsyncer
pytz
pyxdg
requests_toolbelt
tzlocal
urwid
2015-07-21 10:00:03 -07:00
pkginfo
2015-01-30 07:57:29 -08:00
];
meta = with stdenv.lib; {
2015-01-30 07:57:29 -08:00
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
2015-01-30 07:57:29 -08:00
};
}