Merge pull request #46034 from teto/khal_zsh_completion

khal: add zsh completion
This commit is contained in:
Jörg Thalheim 2018-09-06 07:56:37 +01:00 committed by GitHub
commit b285ea77c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
'';