python310Packages.pyglet 0 -> 1 attrpath: python310Packages.pyglet Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/a0wka15jkqd52g0r8k78fdwx7xj8spwz-packages.json.drv building '/nix/store/a0wka15jkqd52g0r8k78fdwx7xj8spwz-packages.json.drv'... Going to be running update for following packages: - python3.10-pyglet-1.5.27 Press Enter key to continue... Running update for: - python3.10-pyglet-1.5.27: UPDATING ... - python3.10-pyglet-1.5.27: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pyglet/default.nix b/pkgs/development/python-modules/pyglet/default.nix index f1c4bb44d9a..130ce00dcfc 100644 --- a/pkgs/development/python-modules/pyglet/default.nix +++ b/pkgs/development/python-modules/pyglet/default.nix @@ -18,13 +18,13 @@ }: buildPythonPackage rec { - version = "1.5.27"; + version = "2.0.3"; pname = "pyglet"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-TQDgZ0UfOxD9UbaXZP3atlRENyoto0TuKzXwqObr8AU="; + sha256 = "sha256-sVBzR0+Tx84w9x5K+CTTyEfbCZ8hEe8WvgtjHSoiK9M="; extension = "zip"; }; An auto update branch exists with message `python310Packages.pyglet: 1.5.27 -> 2.0.2.1`. New version is 2.0.3. The auto update branch does not match or exceed the new version. Old version 1.5.27" not present in staging derivation file with contents: { lib, stdenv , buildPythonPackage , fetchPypi , unzip , pythonOlder , libGL , libGLU , xorg , pytestCheckHook , glibc , gtk2-x11 , gdk-pixbuf , fontconfig , freetype , ffmpeg-full , openal , libpulseaudio }: buildPythonPackage rec { version = "2.0.2.1"; pname = "pyglet"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; sha256 = "sha256-WonGjdooD3Yb3rAha536An+y4nUZoOo8FvZViyBPHl8="; extension = "zip"; }; # 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 '' cat > pyglet/lib.py <