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

21 lines
560 B
Nix
Raw Normal View History

2018-07-09 14:16:43 +00:00
{ lib, fetchPypi, buildPythonPackage, user-agents }:
2018-01-14 21:26:52 +00:00
buildPythonPackage rec {
pname = "home-assistant-frontend";
2019-03-04 16:23:55 +00:00
version = "20190305.1";
2018-01-14 21:26:52 +00:00
src = fetchPypi {
inherit pname version;
2019-03-04 16:23:55 +00:00
sha256 = "1b07b7efb3e0004df752f9aa40c42e80d5da13371f48df8e21c7579093849aae";
2018-01-14 21:26:52 +00:00
};
2018-03-14 17:48:50 +00:00
propagatedBuildInputs = [ user-agents ];
2018-07-09 14:16:43 +00: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 21:26:52 +00:00
}