nixpkgs/pkgs/servers/home-assistant/frontend.nix

27 lines
815 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage }:
2018-01-14 13:26:52 -08:00
buildPythonPackage rec {
# 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";
2021-03-08 18:09:42 -08:00
version = "20210302.6";
2018-01-14 13:26:52 -08:00
src = fetchPypi {
inherit pname version;
2021-03-08 18:09:42 -08:00
sha256 = "sha256-h3jCqfAPg+z6vsdLm5Pdr+7PCEWW58GCG9viIz3Mi64=";
2018-01-14 13:26:52 -08:00
};
2018-03-14 10:48:50 -07:00
# there is nothing to strip in this package
dontStrip = true;
# 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";
2018-07-09 07:16:43 -07:00
license = licenses.asl20;
maintainers = with maintainers; [ globin ];
2018-07-09 07:16:43 -07:00
};
2018-01-14 13:26:52 -08:00
}