Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / home-assistant / frontend.nix
blobf03474206247a24d7ed87a07dcfdc2bad2675c35
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 = "20240710.0";
8   format = "wheel";
10   src = fetchPypi {
11     inherit version format;
12     pname = "home_assistant_frontend";
13     dist = "py3";
14     python = "py3";
15     hash = "sha256-EP4r59sgrLuK+n3ydq4LMCUS4xsT2XYE2OvK9N+Gd+M=";
16   };
18   # there is nothing to strip in this package
19   dontStrip = true;
21   # no Python tests implemented
22   doCheck = false;
24   meta = with lib; {
25     description = "Polymer frontend for Home Assistant";
26     homepage = "https://github.com/home-assistant/home-assistant-polymer";
27     license = licenses.asl20;
28     maintainers = teams.home-assistant.members;
29   };