home-assistant: pin intellifire4py==2.2.2

This commit is contained in:
Martin Weinelt 2023-10-27 14:25:37 +02:00
parent 87306bd86e
commit 8b0edc9c50
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -117,6 +117,25 @@ let
};
});
intellifire4py = super.intellifire4py.overridePythonAttrs (oldAttrs: rec {
version = "2.2.2";
src = fetchFromGitHub {
owner = "jeeftor";
repo = "intellifire4py";
rev = "refs/tags/${version}";
hash = "sha256-iqlKfpnETLqQwy5sNcK2x/TgmuN2hCfYoHEFK2WWVXI=";
};
nativeBuildInputs = with super; [
setuptools
];
propagatedBuildInputs = with super; [
aenum
aiohttp
pydantic
];
doCheck = false; # requires asynctest, which does not work on python 3.11
});
jaraco-abode = super.jaraco-abode.overridePythonAttrs (oldAttrs: rec {
version = "3.3.0";
src = fetchFromGitHub {