home-assistant: pin xmltodict at 0.15.1

API changes in xmltodict 1.0 breaks the georss component dependencies.
This commit is contained in:
Martin Weinelt
2025-11-15 15:53:47 +01:00
parent 8861e67660
commit 49b7b034ab
+12
View File
@@ -263,6 +263,18 @@ let
};
};
# xmltodict>=1.0 not compatible with georss-client and aio-georss-client
# https://github.com/exxamalte/python-aio-georss-client/issues/63
xmltodict = super.xmltodict.overridePythonAttrs rec {
version = "0.15.1";
src = fetchFromGitHub {
owner = "martinblech";
repo = "xmltodict";
tag = "v${version}";
hash = "sha256-j3shoXjAoAWFd+7k+0w6eoNygS2wkbhDkIq7QG+TmSM=";
};
};
# internal python packages only consumed by home-assistant itself
hass-web-proxy-lib = self.callPackage ./python-modules/hass-web-proxy-lib { };
home-assistant-frontend = self.callPackage ./frontend.nix { };