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