1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/home-assistant/frontend.nix
2018-12-06 14:59:27 +01:00

21 lines
560 B
Nix

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