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

46 lines
845 B
Nix
Raw Normal View History

2017-09-21 11:50:32 +00:00
{ stdenv, pkgs, python3Packages }:
2015-01-30 15:57:29 +00:00
with python3Packages;
buildPythonApplication rec {
2017-09-21 11:50:32 +00:00
name = "${pname}-${version}";
pname = "khal";
2017-10-31 15:10:32 +00:00
version = "0.9.8";
2015-01-30 15:57:29 +00:00
2017-09-21 11:50:32 +00:00
src = fetchPypi {
inherit pname version;
2017-10-31 15:10:32 +00:00
sha256 = "1blx3gxnv7sj302biqphfw7i6ilzl2xlmvzp130n3113scg9w17y";
2015-01-30 15:57:29 +00:00
};
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [
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
freezegun
2015-01-30 15:57:29 +00:00
];
buildInputs = [ setuptools_scm pytest pkgs.glibcLocales ];
checkPhase = ''
# py.test
'';
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
};
}