Unverified Commit 8b0edc9c authored by Martin Weinelt's avatar Martin Weinelt
Browse files

home-assistant: pin intellifire4py==2.2.2

parent 87306bd8
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
@@ -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 {