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 = "20180818.0";
2018-01-14 13:26:52 -08:00
src = fetchPypi {
inherit pname version;
sha256 = "b6101c342e49c943c59e3525d6741cd3a23af94b65549d59bdeee8cf3f07b294";
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
}