nixpkgs/pkgs/applications/misc/khal/default.nix
Damien Cassou a0b1b032b6 khal: force Python3
Both the README and setup.py agree that khal is only compatible with
Python 3.
2016-03-03 15:17:37 +01:00

35 lines
762 B
Nix

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