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

21 lines
560 B
Nix
Raw Normal View History

2018-07-09 07:16:43 -07:00
{ lib, fetchPypi, buildPythonPackage, user-agents }:
2018-01-14 13:26:52 -08:00
buildPythonPackage rec {
pname = "home-assistant-frontend";
version = "20180720.0";
2018-01-14 13:26:52 -08:00
src = fetchPypi {
inherit pname version;
sha256 = "4a9d570cfc1d6b0e4b914897197d6772d48aa38b10202a648e79c5fb2a6a0293";
2018-01-14 13:26:52 -08:00
};
2018-03-14 10:48:50 -07:00
propagatedBuildInputs = [ user-agents ];
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;
maintainers = with maintainers; [ dotlambda ];
};
2018-01-14 13:26:52 -08:00
}