python311Packages.python-engineio 4.7.1 -> 4.8.1 https://repology.org/project/python:python-engineio/versions attrpath: python311Packages.python-engineio 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/58b3jvxs42nhlyq3r2vhbhlpm889l6bl-packages.json.drv building '/nix/store/58b3jvxs42nhlyq3r2vhbhlpm889l6bl-packages.json.drv'... Going to be running update for following packages: - python3.11-python-engineio-4.7.1 Press Enter key to continue... Running update for: - python3.11-python-engineio-4.7.1: UPDATING ... - python3.11-python-engineio-4.7.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix index 990cbd1be317..6e357c366181 100644 --- a/pkgs/development/python-modules/python-engineio/default.nix +++ b/pkgs/development/python-modules/python-engineio/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "python-engineio"; - version = "4.7.1"; + version = "4.8.1"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "miguelgrinberg"; repo = "python-engineio"; rev = "refs/tags/v${version}"; - hash = "sha256-jHXpPnrQlIpmQ2sY4y6AUx/6W8Pf+683s4NmmlwZO58="; + hash = "sha256-Q5ReEkEwycrCE1CE0XQoqcIs01Ou0CEMJCc/3i2x78M="; }; propagatedBuildInputs = [ No auto update branch exists Old version 4.7.1" not present in staging derivation file with contents: { lib , stdenv , aiohttp , buildPythonPackage , setuptools , eventlet , fetchFromGitHub , iana-etc , libredirect , mock , pytestCheckHook , pythonOlder , requests , simple-websocket , tornado , websocket-client }: buildPythonPackage rec { pname = "python-engineio"; version = "4.8.0"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "miguelgrinberg"; repo = "python-engineio"; rev = "refs/tags/v${version}"; hash = "sha256-btXwx9GRLBcjtcGdgckb2Y/MxC0E/rKTWKgkP8olezo="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ simple-websocket ]; passthru.optional-dependencies = { client = [ requests websocket-client ]; asyncio_client = [ aiohttp ]; }; nativeCheckInputs = [ aiohttp eventlet mock requests tornado websocket-client pytestCheckHook ]; doCheck = !stdenv.isDarwin; preCheck = lib.optionalString stdenv.isLinux '' echo "nameserver 127.0.0.1" > resolv.conf export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols:/etc/resolv.conf=$(realpath resolv.conf) \ LD_PRELOAD=${libredirect}/lib/libredirect.so ''; postCheck = '' unset NIX_REDIRECTS LD_PRELOAD ''; # somehow effective log level does not change? disabledTests = [ "test_logger" ]; pythonImportsCheck = [ "engineio" ]; meta = with lib; { description = "Python based Engine.IO client and server"; longDescription = '' Engine.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-engineio/"; changelog = "https://github.com/miguelgrinberg/python-engineio/blob/v${version}/CHANGES.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ mic92 ]; }; }