2019-05-20 13:40:43 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2018-01-14 21:26:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-10-19 16:33:22 +00: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-14 21:26:52 +00:00
|
|
|
pname = "home-assistant-frontend";
|
2024-08-10 18:19:58 +00:00
|
|
|
version = "20240809.0";
|
2022-02-04 10:25:24 +00:00
|
|
|
format = "wheel";
|
2018-01-14 21:26:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2022-02-04 10:25:24 +00:00
|
|
|
inherit version format;
|
|
|
|
pname = "home_assistant_frontend";
|
|
|
|
dist = "py3";
|
|
|
|
python = "py3";
|
2024-08-10 18:19:58 +00:00
|
|
|
hash = "sha256-PVW/W6/a/kbhbGw35/+AHvjAn1Xq3dW5nslMJWsDgv4=";
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
2018-03-14 17:48:50 +00:00
|
|
|
|
2021-01-06 23:20:39 +00:00
|
|
|
# there is nothing to strip in this package
|
|
|
|
dontStrip = true;
|
|
|
|
|
2019-03-24 18:45:35 +00:00
|
|
|
# no Python tests implemented
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-07-09 14:16:43 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Polymer frontend for Home Assistant";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/home-assistant/home-assistant-polymer";
|
2018-07-09 14:16:43 +00:00
|
|
|
license = licenses.asl20;
|
2021-04-05 23:16:25 +00:00
|
|
|
maintainers = teams.home-assistant.members;
|
2018-07-09 14:16:43 +00:00
|
|
|
};
|
2018-01-14 21:26:52 +00:00
|
|
|
}
|