nixpkgs/pkgs/servers/home-assistant/frontend.nix
2019-03-08 13:00:06 +01:00

21 lines
560 B
Nix

{ lib, fetchPypi, buildPythonPackage, user-agents }:
buildPythonPackage rec {
pname = "home-assistant-frontend";
version = "20190305.1";
src = fetchPypi {
inherit pname version;
sha256 = "1b07b7efb3e0004df752f9aa40c42e80d5da13371f48df8e21c7579093849aae";
};
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 ];
};
}