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

21 lines
560 B
Nix
Raw Normal View History

2018-07-09 14:16:43 +00:00
{ lib, fetchPypi, buildPythonPackage, user-agents }:
2018-01-14 21:26:52 +00:00
buildPythonPackage rec {
pname = "home-assistant-frontend";
2019-01-11 22:40:58 +00:00
version = "20190109.1";
2018-01-14 21:26:52 +00:00
src = fetchPypi {
inherit pname version;
2019-01-11 22:40:58 +00:00
sha256 = "2ca035461c06591dc793c7651ed3f7c17ab3addf5859e89d2f956215433140ba";
2018-01-14 21:26:52 +00:00
};
2018-03-14 17:48:50 +00:00
propagatedBuildInputs = [ user-agents ];
2018-07-09 14:16:43 +00: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
}