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";
2018-11-03 14:25:56 +00:00
version = "20181026.4";
2018-01-14 21:26:52 +00:00
src = fetchPypi {
inherit pname version;
2018-11-03 14:25:56 +00:00
sha256 = "b0610206eee06042847d89a581ecfcd71255b0e1ecff77e302237e8aa175b00d";
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
}