From c1cd1e6a08ea4af88456916e2d4f37e101de2c85 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 28 Sep 2025 11:00:45 +0200 Subject: [PATCH] python313Packages.aiohttp-middlewares: disable failing tests --- .../python-modules/aiohttp-middlewares/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiohttp-middlewares/default.nix b/pkgs/development/python-modules/aiohttp-middlewares/default.nix index 934f4d72000c..8b086fd8114b 100644 --- a/pkgs/development/python-modules/aiohttp-middlewares/default.nix +++ b/pkgs/development/python-modules/aiohttp-middlewares/default.nix @@ -7,7 +7,6 @@ poetry-core, pytest-aiohttp, pytestCheckHook, - pythonOlder, yarl, }: @@ -16,8 +15,6 @@ buildPythonPackage rec { version = "2.4.0"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "playpauseandstop"; repo = "aiohttp-middlewares"; @@ -57,7 +54,7 @@ buildPythonPackage rec { meta = with lib; { description = "Collection of useful middlewares for aiohttp.web applications"; homepage = "https://github.com/playpauseandstop/aiohttp-middlewares"; - changelog = "https://github.com/playpauseandstop/aiohttp-middlewares/blob/${version}/CHANGELOG.rst"; + changelog = "https://github.com/playpauseandstop/aiohttp-middlewares/blob/${src.tag}/CHANGELOG.rst"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; };