3
0
Fork 0
forked from mirrors/nixpkgs

khal: add zsh completion

This commit is contained in:
Matthieu Coudron 2018-09-04 19:27:19 +09:00
parent d22e22e2dd
commit 61df695f65

View file

@ -46,6 +46,10 @@ in with python.pkgs; buildPythonApplication rec {
nativeBuildInputs = [ setuptools_scm pkgs.glibcLocales ];
checkInputs = [ pytest ];
postInstall = ''
install -D misc/__khal $out/share/zsh/site-functions/__khal
'';
checkPhase = ''
py.test
'';