1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4 # the frontend version corresponding to a specific home-assistant version can be found here
5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
6 pname = "home-assistant-frontend";
7 version = "20241106.2";
11 inherit version format;
12 pname = "home_assistant_frontend";
15 hash = "sha256-9Il9/lHKIaymw7H8fL1gpp80+VzSqVJ1IyHGEa3OoO8=";
18 # there is nothing to strip in this package
21 # no Python tests implemented
25 changelog = "https://github.com/home-assistant/frontend/releases/tag/${version}";
26 description = "Frontend for Home Assistant";
27 homepage = "https://github.com/home-assistant/frontend";
28 license = licenses.asl20;
29 maintainers = teams.home-assistant.members;