python3Packages.aiohttp: 3.12.15 -> 3.13.0

Diff: https://github.com/aio-libs/aiohttp/compare/v3.12.15...v3.13.0

Changelog: https://docs.aiohttp.org/en/v3.13.0/changes.html
This commit is contained in:
Robert Schütz
2025-10-13 12:58:26 -07:00
parent 0f8b9bb85c
commit 071162ccce
@@ -6,6 +6,7 @@
replaceVars,
isPy310,
isPyPy,
pythonOlder,
# build-system
cython,
@@ -24,6 +25,7 @@
multidict,
propcache,
yarl,
zstandard,
# optional dependencies
aiodns,
@@ -49,14 +51,14 @@
buildPythonPackage rec {
pname = "aiohttp";
version = "3.12.15";
version = "3.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "aio-libs";
repo = "aiohttp";
tag = "v${version}";
hash = "sha256-nVDGSbzjCdyJFCsHq8kJigNA4vGs4Pg1Vyyvw+gKg2w=";
hash = "sha256-X4igOjBeAGDfUGwZAsjUWOWt3EFt53QSuUcdJ/5vBVU=";
};
patches = lib.optionals (!lib.meta.availableOn stdenv.hostPlatform isa-l) [
@@ -104,6 +106,9 @@ buildPythonPackage rec {
optional-dependencies.speedups = [
aiodns
(if isPyPy then brotlicffi else brotli)
]
++ lib.optionals (pythonOlder "3.14") [
zstandard
];
nativeCheckInputs = [