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

21 lines
560 B
Nix
Raw Normal View History

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