From 4b8d36625e73fa250e9122f69af3c72ceb501530 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 21 Sep 2024 23:52:29 +0200 Subject: [PATCH] python312Packages.pyfronius: mark as broken Tests are failing with aiohttp 3.10.x https://github.com/nielstron/pyfronius/issues/18 --- pkgs/development/python-modules/pyfronius/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pyfronius/default.nix b/pkgs/development/python-modules/pyfronius/default.nix index 98081c9ca872..c5cf2f3512b1 100644 --- a/pkgs/development/python-modules/pyfronius/default.nix +++ b/pkgs/development/python-modules/pyfronius/default.nix @@ -36,5 +36,7 @@ buildPythonPackage rec { changelog = "https://github.com/nielstron/pyfronius/releases/tag/release-${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; + # https://github.com/nielstron/pyfronius/issues/18 + broken = versionAtLeast aiohttp.version "3.10.1"; }; }