python311Packages.evdev 0 -> 1 attrpath: python311Packages.evdev 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bmdxgl65hypcpnhx5f9xy1llgz8hkcfz-packages.json.drv building '/nix/store/bmdxgl65hypcpnhx5f9xy1llgz8hkcfz-packages.json.drv'... Going to be running update for following packages: - python3.11-evdev-1.6.1 Press Enter key to continue... Running update for: - python3.11-evdev-1.6.1: UPDATING ... - python3.11-evdev-1.6.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/evdev/default.nix b/pkgs/development/python-modules/evdev/default.nix index 659a2314d6dd..36957d287dcd 100644 --- a/pkgs/development/python-modules/evdev/default.nix +++ b/pkgs/development/python-modules/evdev/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "evdev"; - version = "1.6.1"; + version = "1.7.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-KZ24YozHOyN/wcxX08KUj6oHVuKli2GUtb+B3CCB8eM="; + hash = "sha256-lb0qHgxs4s16LsxubNlzb/eUs61ctU2B2MvC5BTQuHA="; }; buildInputs = [ No auto update branch exists Old version 1.6.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , linuxHeaders , pythonOlder , setuptools }: buildPythonPackage rec { pname = "evdev"; version = "1.7.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-lb0qHgxs4s16LsxubNlzb/eUs61ctU2B2MvC5BTQuHA="; }; patchPhase = '' substituteInPlace setup.py \ --replace-fail /usr/include ${linuxHeaders}/include ''; build-system = [ setuptools ]; buildInputs = [ linuxHeaders ]; doCheck = false; pythonImportsCheck = [ "evdev" ]; meta = with lib; { description = "Provides bindings to the generic input event interface in Linux"; homepage = "https://python-evdev.readthedocs.io/"; changelog = "https://github.com/gvalkov/python-evdev/blob/v${version}/docs/changelog.rst"; license = licenses.bsd3; maintainers = with maintainers; [ goibhniu ]; platforms = platforms.linux; }; }