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

36 lines
782 B
Nix
Raw Normal View History

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