From e20213f2d0d71dabae72381411aaa5cffeca6aca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 7 Nov 2025 09:11:15 +0100 Subject: [PATCH] python3Packages.aiohttp: drop patch included in 3.13.2 This was forgotten during the update in bbf20cd77847ee. --- .../python-modules/aiohttp/default.nix | 4 ---- .../python-modules/aiohttp/remove-isal.patch | 21 ------------------- 2 files changed, 25 deletions(-) delete mode 100644 pkgs/development/python-modules/aiohttp/remove-isal.patch diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix index d481ea44be06..35d176e3f70b 100644 --- a/pkgs/development/python-modules/aiohttp/default.nix +++ b/pkgs/development/python-modules/aiohttp/default.nix @@ -61,10 +61,6 @@ buildPythonPackage rec { hash = "sha256-LqYGrrWgSZazk0hjQvTFwqtU/PtMEaPi+m1Ya8Ds+pU="; }; - patches = lib.optionals (!lib.meta.availableOn stdenv.hostPlatform isa-l) [ - ./remove-isal.patch - ]; - postPatch = '' rm -r vendor patchShebangs tools diff --git a/pkgs/development/python-modules/aiohttp/remove-isal.patch b/pkgs/development/python-modules/aiohttp/remove-isal.patch deleted file mode 100644 index 4a91fca368ae..000000000000 --- a/pkgs/development/python-modules/aiohttp/remove-isal.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/tests/conftest.py b/tests/conftest.py -index 62fb04f2e..bb5b279dd 100644 ---- a/tests/conftest.py -+++ b/tests/conftest.py -@@ -12,7 +12,6 @@ from typing import Any, AsyncIterator, Callable, Generator, Iterator - from unittest import mock - from uuid import uuid4 - --import isal.isal_zlib - import pytest - import zlib_ng.zlib_ng - from blockbuster import blockbuster_ctx -@@ -333,7 +332,7 @@ def unused_port_socket() -> Generator[socket.socket, None, None]: - s.close() - - --@pytest.fixture(params=[zlib, zlib_ng.zlib_ng, isal.isal_zlib]) -+@pytest.fixture(params=[zlib, zlib_ng.zlib_ng]) - def parametrize_zlib_backend( - request: pytest.FixtureRequest, - ) -> Generator[None, None, None]: