python310Packages.python-socketio 0 -> 1 attrpath: python310Packages.python-socketio 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] Going to be running update for following packages: - python3.10-python-socketio-5.9.0 Press Enter key to continue... Running update for: - python3.10-python-socketio-5.9.0: UPDATING ... - python3.10-python-socketio-5.9.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-socketio/default.nix b/pkgs/development/python-modules/python-socketio/default.nix index f046f7c81189..9de77cd5c430 100644 --- a/pkgs/development/python-modules/python-socketio/default.nix +++ b/pkgs/development/python-modules/python-socketio/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "python-socketio"; - version = "5.9.0"; + version = "5.11.0"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -22,8 +22,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "miguelgrinberg"; repo = "python-socketio"; - rev = "v${version}"; - hash = "sha256-1lyTZwkRpGRbeBqt6Thv5o+bUzkD1sC3T9T1GbWMEkI="; + rev = "refs/tags/v${version}"; + hash = "sha256-QzB+WZEjq/l4O2zqrZGTWzVWjsNIgeIy6cCz1mvOKAo="; }; propagatedBuildInputs = [ No auto update branch exists Old version 5.9.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pythonOlder # build-system , setuptools # dependencies , bidict , python-engineio # optional-dependencies , aiohttp , requests , websocket-client # tests , msgpack , pytestCheckHook , simple-websocket , uvicorn }: buildPythonPackage rec { pname = "python-socketio"; version = "5.10.0"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "miguelgrinberg"; repo = "python-socketio"; rev = "refs/tags/v${version}"; hash = "sha256-nlzTzIswMRjvJ9l9TOtVvRvbKlQPvNH0/P1NIbQCmy8="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ bidict python-engineio ]; passthru.optional-dependencies = { client = [ requests websocket-client ]; asyncio_client = [ aiohttp ]; }; nativeCheckInputs = [ msgpack pytestCheckHook uvicorn simple-websocket ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies); pythonImportsCheck = [ "socketio" ]; meta = with lib; { description = "Python Socket.IO server and client"; longDescription = '' Socket.IO is a lightweight transport protocol that enables real-time bidirectional event-based communication between clients and a server. ''; homepage = "https://github.com/miguelgrinberg/python-socketio/"; changelog = "https://github.com/miguelgrinberg/python-socketio/blob/v${version}/CHANGES.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ mic92 ]; }; }