2019-05-20 14:40:43 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2018-01-14 21:26:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "home-assistant-frontend";
|
2019-05-20 14:40:43 +01:00
|
|
|
version = "20190514.0";
|
2018-01-14 21:26:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-20 14:40:43 +01:00
|
|
|
sha256 = "ba8cfa01b00ff2ee94a91cd83197b4d213e9b9df151daaef11dd0a56d34c5414";
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
2018-03-14 17:48:50 +00:00
|
|
|
|
2019-03-24 18:45:35 +00:00
|
|
|
# no Python tests implemented
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-07-09 15:16:43 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Polymer frontend for Home Assistant";
|
|
|
|
homepage = https://github.com/home-assistant/home-assistant-polymer;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
2018-01-14 21:26:52 +00:00
|
|
|
}
|