21 lines
560 B
Nix
21 lines
560 B
Nix
{ lib, fetchPypi, buildPythonPackage, user-agents }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "home-assistant-frontend";
|
|
version = "20181211.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "75dd525922efc1f9a6a4a42c720764a539b18636769e2febc33bb68967c7ebff";
|
|
};
|
|
|
|
propagatedBuildInputs = [ user-agents ];
|
|
|
|
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 ];
|
|
};
|
|
}
|