2018-06-29 17:57:30 +01:00
|
|
|
{ stdenv, pkgs, python3 }:
|
2015-01-30 15:57:29 +00:00
|
|
|
|
2018-10-30 17:27:52 +00:00
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2017-09-21 12:50:32 +01:00
|
|
|
pname = "khal";
|
2019-03-30 17:58:32 +00:00
|
|
|
version = "0.10.1";
|
2015-01-30 15:57:29 +00:00
|
|
|
|
2017-09-21 12:50:32 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-03-30 17:58:32 +00:00
|
|
|
sha256 = "1r8bkgjwkh7i8ygvsv51h1cnax50sb183vafg66x5snxf3dgjl6l";
|
2015-01-30 15:57:29 +00:00
|
|
|
};
|
|
|
|
|
2016-05-22 17:34:14 +01:00
|
|
|
propagatedBuildInputs = [
|
2015-01-30 15:57:29 +00:00
|
|
|
atomicwrites
|
|
|
|
click
|
2019-03-26 00:14:30 +00:00
|
|
|
click-log
|
2015-01-30 15:57:29 +00:00
|
|
|
configobj
|
|
|
|
dateutil
|
|
|
|
icalendar
|
|
|
|
lxml
|
|
|
|
pkgs.vdirsyncer
|
|
|
|
pytz
|
|
|
|
pyxdg
|
|
|
|
requests_toolbelt
|
|
|
|
tzlocal
|
|
|
|
urwid
|
2015-07-21 18:00:03 +01:00
|
|
|
pkginfo
|
2016-05-22 17:34:14 +01:00
|
|
|
freezegun
|
2015-01-30 15:57:29 +00:00
|
|
|
];
|
2019-03-26 00:14:30 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
2018-06-29 17:57:30 +01:00
|
|
|
checkInputs = [ pytest ];
|
2016-05-22 17:34:14 +01:00
|
|
|
|
2018-09-04 11:27:19 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -D misc/__khal $out/share/zsh/site-functions/__khal
|
|
|
|
'';
|
|
|
|
|
2019-03-31 18:08:46 +01:00
|
|
|
doCheck = !stdenv.isAarch64;
|
2018-10-30 17:27:52 +00:00
|
|
|
|
2016-05-22 17:34:14 +01:00
|
|
|
checkPhase = ''
|
2018-06-29 17:57:30 +01:00
|
|
|
py.test
|
2016-05-22 17:34:14 +01:00
|
|
|
'';
|
2015-01-30 15:57:29 +00:00
|
|
|
|
2015-05-30 00:26:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-01-30 15:57:29 +00:00
|
|
|
homepage = http://lostpackets.de/khal/;
|
|
|
|
description = "CLI calendar application";
|
2015-05-30 00:26:29 +01:00
|
|
|
license = licenses.mit;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
2015-01-30 15:57:29 +00:00
|
|
|
};
|
|
|
|
}
|