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";
version = "20180804.0";
2018-01-14 22:26:52 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "50a9e74efe2b56fbc34fba07205829e0ea77315183e85c235d177cabff3b62ee";
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
}