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

35 lines
762 B
Nix
Raw Normal View History

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