1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/khal/default.nix

36 lines
782 B
Nix
Raw Normal View History

2015-01-30 15:57:29 +00:00
{ stdenv, fetchurl, pkgs, pythonPackages }:
pythonPackages.buildPythonPackage rec {
2015-12-14 01:05:01 +00:00
version = "0.7.0";
2015-01-30 15:57:29 +00:00
name = "khal-${version}";
src = fetchurl {
2015-07-21 17:59:40 +01:00
url = "https://pypi.python.org/packages/source/k/khal/khal-${version}.tar.gz";
2015-12-14 01:05:01 +00:00
sha256 = "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66";
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-07-21 18:00:03 +01:00
pkginfo
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
};
}