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

21 lines
560 B
Nix
Raw Normal View History

2018-07-09 17:16:43 +03:00
{ lib, fetchPypi, buildPythonPackage, user-agents }:
2018-01-15 00:26:52 +03:00
buildPythonPackage rec {
pname = "home-assistant-frontend";
2018-07-09 17:16:43 +03:00
version = "20180708.0";
2018-01-15 00:26:52 +03:00
src = fetchPypi {
inherit pname version;
2018-07-09 17:16:43 +03:00
sha256 = "e1b068a21b26ffdc50aad2baef65b94a2f43a4df7b0d5970374d4300e93745f8";
2018-01-15 00:26:52 +03:00
};
2018-03-14 20:48:50 +03:00
propagatedBuildInputs = [ user-agents ];
2018-07-09 17:16:43 +03: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-15 00:26:52 +03:00
}