home-assistant: pin aiohttp to 3.8.5

Upstream does so in https://github.com/home-assistant/core/pull/101913.
This commit is contained in:
Robert Schütz 2023-10-21 16:50:31 -07:00
parent eb180ea033
commit e3646a7323

View file

@ -40,6 +40,16 @@ let
};
});
# https://github.com/home-assistant/core/pull/101913
aiohttp = super.aiohttp.overridePythonAttrs (old: rec {
version = "3.8.5";
src = fetchPypi {
inherit (old) pname;
inherit version;
hash = "sha256-uVUuxSzBR9vxlErHrJivdgLlHqLc0HbtGUyjwNHH0Lw=";
};
});
aiowatttime = super.aiowatttime.overridePythonAttrs (oldAttrs: rec {
version = "0.1.1";
src = fetchFromGitHub {