My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/aioesphomeapi/default.nix

16 lines
330 B

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