nixpkgs/pkgs/servers/home-assistant/frontend.nix

21 lines
560 B
Nix
Raw Normal View History

2018-07-09 16:16:43 +02:00
{ lib, fetchPypi, buildPythonPackage, user-agents }:
2018-01-14 22:26:52 +01:00
buildPythonPackage rec {
pname = "home-assistant-frontend";
2018-09-06 20:22:56 +02:00
version = "20180903.0";
2018-01-14 22:26:52 +01:00
src = fetchPypi {
inherit pname version;
2018-09-06 20:22:56 +02:00
sha256 = "54ba2ad2d1043952885f432d900025bd3eb11de180ac5147342cff585f44d4f9";
2018-01-14 22:26:52 +01:00
};
2018-03-14 18:48:50 +01:00
propagatedBuildInputs = [ user-agents ];
2018-07-09 16:16:43 +02:00
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 ];
};
2018-01-14 22:26:52 +01:00
}