2019-05-20 16:40:43 +03:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2018-01-15 00:26:52 +03:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-10-19 19:33:22 +03:00
|
|
|
# the frontend version corresponding to a specific home-assistant version can be found here
|
|
|
|
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
|
2018-01-15 00:26:52 +03:00
|
|
|
pname = "home-assistant-frontend";
|
2023-12-10 17:18:27 +03:00
|
|
|
version = "20231208.2";
|
2022-02-04 13:25:24 +03:00
|
|
|
format = "wheel";
|
2018-01-15 00:26:52 +03:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2022-02-04 13:25:24 +03:00
|
|
|
inherit version format;
|
|
|
|
pname = "home_assistant_frontend";
|
|
|
|
dist = "py3";
|
|
|
|
python = "py3";
|
2023-12-10 17:18:27 +03:00
|
|
|
hash = "sha256-JTYZPku5UdnMOllnzyI9tbYgxcewx5tklDooQKJA6p8=";
|
2018-01-15 00:26:52 +03:00
|
|
|
};
|
2018-03-14 20:48:50 +03:00
|
|
|
|
2021-01-07 02:20:39 +03:00
|
|
|
# there is nothing to strip in this package
|
|
|
|
dontStrip = true;
|
|
|
|
|
2019-03-24 21:45:35 +03:00
|
|
|
# no Python tests implemented
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-07-09 17:16:43 +03:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Polymer frontend for Home Assistant";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://github.com/home-assistant/home-assistant-polymer";
|
2018-07-09 17:16:43 +03:00
|
|
|
license = licenses.asl20;
|
2021-04-06 02:16:25 +03:00
|
|
|
maintainers = teams.home-assistant.members;
|
2018-07-09 17:16:43 +03:00
|
|
|
};
|
2018-01-15 00:26:52 +03:00
|
|
|
}
|