2019-05-20 06:40:43 -07:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2018-01-14 13:26:52 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-10-19 09:33:22 -07: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 13:26:52 -08:00
|
|
|
pname = "home-assistant-frontend";
|
2019-10-19 09:20:26 -07:00
|
|
|
version = "20190919.0";
|
2018-01-14 13:26:52 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-19 09:20:26 -07:00
|
|
|
sha256 = "1xdw8fj4njc3sf15mlyiwigrwf89xsz4r2dsv6zs5fnl512r439a";
|
2018-01-14 13:26:52 -08:00
|
|
|
};
|
2018-03-14 10:48:50 -07:00
|
|
|
|
2019-03-24 11:45:35 -07:00
|
|
|
# no Python tests implemented
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-07-09 07:16:43 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Polymer frontend for Home Assistant";
|
|
|
|
homepage = https://github.com/home-assistant/home-assistant-polymer;
|
|
|
|
license = licenses.asl20;
|
2019-08-20 10:36:05 -07:00
|
|
|
maintainers = with maintainers; [ dotlambda globin ];
|
2018-07-09 07:16:43 -07:00
|
|
|
};
|
2018-01-14 13:26:52 -08:00
|
|
|
}
|