python3Packages.aioesphomeapi: 2.6.3 -> 2.6.4

This commit is contained in:
Robert Schütz 2021-01-16 13:59:24 +01:00 committed by Jonathan Ringer
parent add5fafa31
commit a646e79cda

View File

@ -1,16 +1,14 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, attrs, protobuf, zeroconf }: { lib, buildPythonPackage, fetchPypi, isPy3k, attrs, protobuf, zeroconf }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aioesphomeapi"; pname = "aioesphomeapi";
version = "2.6.3"; version = "2.6.4";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchFromGitHub { src = fetchPypi {
owner = "esphome"; inherit pname version;
repo = pname; sha256 = "d8def7a909c0471479e1d8b0965de6bb7644b8de315d6e578f9d848b8a6812d0";
rev = "v${version}";
sha256 = "1lbjxqdx63fc7qxx7xwq4b9dafmdafj7p1ggs48hyhbqfwkrv9p7";
}; };
propagatedBuildInputs = [ attrs protobuf zeroconf ]; propagatedBuildInputs = [ attrs protobuf zeroconf ];