{ lib, stdenv, buildPythonPackage, fetchFromGitHub, flit-core, libGL, libGLU, xorg, pytestCheckHook, glibc, gtk2-x11, gdk-pixbuf, fontconfig, freetype, ffmpeg-full, openal, libpulseaudio, harfbuzz, apple-sdk, }: buildPythonPackage rec { version = "2.1.11"; pname = "pyglet"; pyproject = true; src = fetchFromGitHub { owner = "pyglet"; repo = "pyglet"; tag = "v${version}"; hash = "sha256-aGMEjC7Huykdwx4JW9Uoo8a7diJ85iaXM9XCbbyQXk8="; }; # find_library doesn't reliably work with nix (https://github.com/NixOS/nixpkgs/issues/7307). # Even naively searching `LD_LIBRARY_PATH` won't work since `libc.so` is a linker script and # ctypes.cdll.LoadLibrary cannot deal with those. Therefore, just hardcode the paths to the # necessary libraries. postPatch = let ext = stdenv.hostPlatform.extensions.sharedLibrary; in lib.optionalString stdenv.isLinux '' cat > pyglet/lib.py < pyglet/lib.py <