From 66e47d8f35a4074d2d85d7ae597365dc13fab7be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 28 Sep 2021 17:58:48 +0200 Subject: [PATCH] python39Packages.python-swiftclient: install shell completion --- .../development/python-modules/python-swiftclient/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/python-swiftclient/default.nix b/pkgs/development/python-modules/python-swiftclient/default.nix index aebc5d75988c..adb675c0db55 100644 --- a/pkgs/development/python-modules/python-swiftclient/default.nix +++ b/pkgs/development/python-modules/python-swiftclient/default.nix @@ -25,6 +25,10 @@ buildPythonApplication rec { stestr ]; + postInstall = '' + install -Dm644 tools/swift.bash_completion $out/share/bash_completion.d/swift + ''; + checkPhase = '' stestr run '';