Skip to content

Commit

Permalink
pythonPackages.aioesphomeapi: init at 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Apr 1, 2019
1 parent 40be34b commit 323cfa9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
15 changes: 15 additions & 0 deletions pkgs/development/python-modules/aioesphomeapi/default.nix
@@ -0,0 +1,15 @@
{ buildPythonPackage, fetchPypi, attrs, protobuf, zeroconf }:

buildPythonPackage rec {
pname = "aioesphomeapi";
version = "1.8.0";

src = fetchPypi {
inherit pname version;
sha256 = "16ywa7yggmsx8m2r9azdq7w9fxjh736g1vd1aibgh24g7srhwwhj";
};

propagatedBuildInputs = [ attrs protobuf zeroconf ];

meta = {};
}
2 changes: 1 addition & 1 deletion pkgs/servers/home-assistant/component-packages.nix
Expand Up @@ -387,7 +387,7 @@
"envisalink.alarm_control_panel" = ps: with ps; [ ];
"envisalink.binary_sensor" = ps: with ps; [ ];
"envisalink.sensor" = ps: with ps; [ ];
"esphome" = ps: with ps; [ ];
"esphome" = ps: with ps; [ aioesphomeapi ];
"esphome.binary_sensor" = ps: with ps; [ ];
"esphome.config_flow" = ps: with ps; [ ];
"esphome.cover" = ps: with ps; [ ];
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -5458,6 +5458,8 @@ in {
lzstring = callPackage ../development/python-modules/lzstring { };

flickrapi = callPackage ../development/python-modules/flickrapi { };

aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { };
});

in fix' (extends overrides packages)

1 comment on commit 323cfa9

@dotlambda
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fpletz It's sad that you don't even care to add the meta section. I'll do so in my next Home Assistant PR.

Please sign in to comment.