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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
911 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage }:
2018-01-15 00:26:52 +03: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-15 00:26:52 +03:00
pname = "home-assistant-frontend";
version = "20240710.0";
format = "wheel";
2018-01-15 00:26:52 +03:00
src = fetchPypi {
inherit version format;
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
hash = "sha256-EP4r59sgrLuK+n3ydq4LMCUS4xsT2XYE2OvK9N+Gd+M=";
2018-01-15 00:26:52 +03:00
};
2018-03-14 20:48:50 +03:00
# there is nothing to strip in this package
dontStrip = true;
# no Python tests implemented
doCheck = false;
2018-07-09 17:16:43 +03:00
meta = with lib; {
description = "Polymer frontend for Home Assistant";
homepage = "https://github.com/home-assistant/home-assistant-polymer";
2018-07-09 17:16:43 +03:00
license = licenses.asl20;
maintainers = teams.home-assistant.members;
2018-07-09 17:16:43 +03:00
};
2018-01-15 00:26:52 +03:00
}