3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/khal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.5 KiB
Nix
Raw Normal View History

2022-07-02 10:45:33 +01:00
{ lib, stdenv, pkgs, python3, fetchpatch, glibcLocales, installShellFiles }:
2015-01-30 15:57:29 +00:00
with python3.pkgs; buildPythonApplication rec {
2017-09-21 12:50:32 +01:00
pname = "khal";
2022-07-02 10:45:33 +01:00
version = "0.10.5";
2015-01-30 15:57:29 +00:00
2017-09-21 12:50:32 +01:00
src = fetchPypi {
inherit pname version;
2022-07-02 10:45:33 +01:00
sha256 = "sha256-Tu+3rDAqJthgbbOSgXWHpO2UwnoVvy6iEWFKRk/PDHY=";
2015-01-30 15:57:29 +00:00
};
propagatedBuildInputs = [
2015-01-30 15:57:29 +00:00
atomicwrites
click
click-log
2015-01-30 15:57:29 +00:00
configobj
python-dateutil
2015-01-30 15:57:29 +00:00
icalendar
lxml
pkgs.vdirsyncer
pytz
pyxdg
requests-toolbelt
2015-01-30 15:57:29 +00:00
tzlocal
urwid
2015-07-21 18:00:03 +01:00
pkginfo
freezegun
2015-01-30 15:57:29 +00:00
];
2022-07-02 10:45:33 +01:00
nativeBuildInputs = [ setuptools-scm sphinx sphinxcontrib_newsfeed installShellFiles ];
checkInputs = [
glibcLocales
pytestCheckHook
];
LC_ALL = "en_US.UTF-8";
2018-09-04 11:27:19 +01:00
postInstall = ''
2022-07-02 10:45:33 +01:00
# shell completions
installShellCompletion --cmd khal \
--bash <(_KHAL_COMPLETE=bash_source $out/bin/khal) \
--fish <(_KHAL_COMPLETE=zsh_source $out/bin/khal) \
--zsh <(_KHAL_COMPLETE=fish_source $out/bin/khal)
2019-08-19 19:26:08 +01:00
# man page
PATH="${python3.withPackages (ps: with ps; [ sphinx sphinxcontrib_newsfeed ])}/bin:$PATH" \
2019-08-19 19:26:08 +01:00
make -C doc man
install -Dm755 doc/build/man/khal.1 -t $out/share/man/man1
2019-08-20 06:31:50 +01:00
# desktop
install -Dm755 misc/khal.desktop -t $out/share/applications
2018-09-04 11:27:19 +01:00
'';
2019-03-31 18:08:46 +01:00
doCheck = !stdenv.isAarch64;
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "http://lostpackets.de/khal/";
2015-01-30 15:57:29 +00:00
description = "CLI calendar application";
license = licenses.mit;
maintainers = with maintainers; [ gebner ];
2015-01-30 15:57:29 +00:00
};
}