networkd-dispatcher: fix pygobject3

XYenon 74fa11a5 b15a12e8

+10 -3
+10 -3
pkgs/tools/networking/networkd-dispatcher/default.nix
··· 4 , fetchpatch 5 , python3Packages 6 , asciidoc 7 - , makeWrapper 8 , iw 9 }: 10 ··· 43 44 nativeBuildInputs = [ 45 asciidoc 46 - makeWrapper 47 python3Packages.wrapPython 48 ]; 49 50 checkInputs = with python3Packages; [ 51 dbus-python ··· 72 73 doCheck = true; 74 75 postFixup = '' 76 wrapPythonPrograms 77 - wrapProgram $out/bin/networkd-dispatcher --prefix PATH : ${lib.makeBinPath [ iw ]} 78 ''; 79 80 meta = with lib; {
··· 4 , fetchpatch 5 , python3Packages 6 , asciidoc 7 + , wrapGAppsNoGuiHook 8 , iw 9 }: 10 ··· 43 44 nativeBuildInputs = [ 45 asciidoc 46 + wrapGAppsNoGuiHook 47 python3Packages.wrapPython 48 ]; 49 + 50 + dontWrapGApps = true; 51 52 checkInputs = with python3Packages; [ 53 dbus-python ··· 74 75 doCheck = true; 76 77 + preFixup = '' 78 + makeWrapperArgs+=( \ 79 + "''${gappsWrapperArgs[@]}" \ 80 + --prefix PATH : "${lib.makeBinPath [ iw ]}" \ 81 + ) 82 + ''; 83 postFixup = '' 84 wrapPythonPrograms 85 ''; 86 87 meta = with lib; {