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-11-10 13:42:15 +01:00
|
|
|
version = "20181103.3";
|
2018-01-14 22:26:52 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-10 13:42:15 +01:00
|
|
|
sha256 = "b1b598f637ffc4c37a3d35aa3b912216f0340cb43fa6c50f4617536669d19499";
|
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
|
|
|
}
|