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

36 lines
794 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgs, python3Packages }:
2015-01-30 15:57:29 +00:00
python3Packages.buildPythonApplication 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 {
url = "mirror://pypi/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 python3Packages; [
2015-01-30 15:57:29 +00:00
atomicwrites
click
configobj
dateutil
icalendar
lxml
pkgs.vdirsyncer
pytz
pyxdg
requests_toolbelt
tzlocal
urwid
2015-07-21 17:00:03 +00:00
pkginfo
2015-01-30 15:57:29 +00:00
];
buildInputs = with python3Packages; [ setuptools_scm ];
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
};
}