···88 # the frontend version corresponding to a specific home-assistant version can be found here
99 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
1010 pname = "home-assistant-frontend";
1111- version = "20250702.2";
1111+ version = "20250702.3";
1212 format = "wheel";
13131414 src = fetchPypi {
···1616 pname = "home_assistant_frontend";
1717 dist = "py3";
1818 python = "py3";
1919- hash = "sha256-3/m2T2yUpjczHEIywdwL+fqr9juiN2Mtd1iT+X+lTxo=";
1919+ hash = "sha256-Uj7auy5emdP8l9vUxLbAL28UNoAi1OQ/8qIhmJMmA8Q=";
2020 };
21212222 # there is nothing to strip in this package
···9797 with urlopen(
9898 f"https://github.com/home-assistant/home-assistant/archive/{version}.tar.gz"
9999 ) as response:
100100- tarfile.open(fileobj=BytesIO(response.read())).extractall(tmp)
100100+ tarfile.open(fileobj=BytesIO(response.read())).extractall(tmp, filter="data")
101101 # Use part of a script from the Home Assistant codebase
102102 core_path = os.path.join(tmp, f"core-{version}")
103103