python313Packages.pywinbox: fix build (#440258)

authored by Masum Reza and committed by GitHub fd997bd6 84f61cca

+7
+7
pkgs/development/python-modules/pywinbox/default.nix
··· 1 { 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, ··· 7 ewmhlib, 8 xlib, 9 typing-extensions, 10 }: 11 12 buildPythonPackage rec { ··· 27 ewmhlib 28 xlib 29 typing-extensions 30 ]; 31 32 # requires x session (use ewmhlib)
··· 1 { 2 + stdenv, 3 lib, 4 buildPythonPackage, 5 fetchFromGitHub, ··· 8 ewmhlib, 9 xlib, 10 typing-extensions, 11 + pyobjc-core, 12 + pyobjc-framework-Cocoa, 13 }: 14 15 buildPythonPackage rec { ··· 30 ewmhlib 31 xlib 32 typing-extensions 33 + ] 34 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 35 + pyobjc-core 36 + pyobjc-framework-Cocoa 37 ]; 38 39 # requires x session (use ewmhlib)