4b60f4c55f
* python3.pkgs.async-timeout: 3.0.0 -> 3.0.1 * home-assistant: 0.80.3 -> 0.81.0
20 lines
560 B
Nix
20 lines
560 B
Nix
{ lib, fetchPypi, buildPythonPackage, user-agents }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "home-assistant-frontend";
|
|
version = "20181026.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "fa877803ec7201a9b2129e96d6c19822cbcb28fa8ad5d422974bd3c872da1531";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|