diff --git a/pkgs/development/python-modules/aiosonic/default.nix b/pkgs/development/python-modules/aiosonic/default.nix index 10f676f7b721..89b92f988449 100644 --- a/pkgs/development/python-modules/aiosonic/default.nix +++ b/pkgs/development/python-modules/aiosonic/default.nix @@ -14,25 +14,22 @@ pytest-cov-stub, pytest-mock, pytestCheckHook, - pythonOlder, requests, uvicorn, }: buildPythonPackage rec { pname = "aiosonic"; - version = "0.26.0"; + version = "0.30.1"; pyproject = true; - disabled = pythonOlder "3.8"; - __darwinAllowLocalNetworking = true; src = fetchFromGitHub { owner = "sonic182"; repo = "aiosonic"; tag = version; - hash = "sha256-sYd7qjOiRENO6hPhJ01RLsr+2RtTITrXjcT6/ZaGfAU="; + hash = "sha256-VqtPl/dZmxjB7z9AjwBfmYmcxFae2NhWEnsw4l9+IYg="; }; postPatch = '' @@ -119,6 +116,11 @@ buildPythonPackage rec { "test_proxy_request" ]; + disabledTestPaths = [ + # tests hang + "tests/test_sse.py" + ]; + meta = { changelog = "https://github.com/sonic182/aiosonic/blob/${src.tag}/CHANGELOG.md"; description = "Very fast Python asyncio http client";