pythonPackages.aioesphomeapi: init at 1.8.0

This commit is contained in:
Franz Pletz
2019-04-01 17:25:50 +02:00
parent 40be34b3f9
commit 323cfa90b5
3 changed files with 18 additions and 1 deletions

View File

@@ -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 = {};
}