python3Packages.onecache: 0.7.1 -> 0.8.0 (#461822)

This commit is contained in:
dotlambda
2025-12-09 02:48:44 +00:00
committed by GitHub
2 changed files with 9 additions and 7 deletions
@@ -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";
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "onecache";
version = "0.7.1";
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "sonic182";
repo = "onecache";
tag = version;
hash = "sha256-uUtH2MIsnAa3cC5W1NEecrSScpKsKLFrqz7f3WdAO70=";
hash = "sha256-W+5AF5W7Unz5EnAum4WOrKRKet1efzwmEryB2WWlRKY=";
};
build-system = [ poetry-core ];