nixpkgs/pkgs/applications/misc/khal/default.nix
Damien Cassou 4fd22b6a70 khal: add setuptools_scm to dependencies
This is required because vdirsyncer does not depend on it at runtime
anymore.
2016-03-14 14:41:07 +01:00

36 lines
820 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
];
buildInputs = with python3Packages; [ setuptools_scm ];
meta = with stdenv.lib; {
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
};
}