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";
2019-01-10 02:25:16 -08:00
version = "20190109.0";
2018-01-14 13:26:52 -08:00
src = fetchPypi {
inherit pname version;
2019-01-10 02:25:16 -08:00
sha256 = "d4e0241feca3779af67efe906be31ba3fac76e8fb3e46d8416f349f5ec3009a6";
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
}