45 lines
862 B
Nix
45 lines
862 B
Nix
{ stdenv, fetchurl, pkgs, python3Packages }:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
|
version = "0.9.5";
|
|
name = "khal-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/k/khal/khal-${version}.tar.gz";
|
|
sha256 = "0fvv0kjym9q8v20zbpr5m8ig65b8hva4p0c935qsdvgdni68jidr";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
propagatedBuildInputs = [
|
|
atomicwrites
|
|
click
|
|
configobj
|
|
dateutil
|
|
icalendar
|
|
lxml
|
|
pkgs.vdirsyncer
|
|
pytz
|
|
pyxdg
|
|
requests_toolbelt
|
|
tzlocal
|
|
urwid
|
|
pkginfo
|
|
freezegun
|
|
];
|
|
buildInputs = [ setuptools_scm pytest pkgs.glibcLocales ];
|
|
|
|
checkPhase = ''
|
|
# py.test
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://lostpackets.de/khal/;
|
|
description = "CLI calendar application";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
|
|
};
|
|
}
|