mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
21 lines
560 B
Nix
21 lines
560 B
Nix
{ lib, fetchPypi, buildPythonPackage, user-agents }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "home-assistant-frontend";
|
|
version = "20181121.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9cedc4dc4258823b084b9d7634995ab038be109fea4c087e38412b9ef1cb6433";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|