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