esphome: pin paho-mqtt at 1.6.1

Closes: #409387
This commit is contained in:
Martin Weinelt
2025-05-21 17:11:52 +02:00
parent 5159765a7c
commit 8ab765e2d4
+11
View File
@@ -17,6 +17,17 @@ let
self = python;
packageOverrides = self: super: {
esphome-dashboard = self.callPackage ./dashboard.nix { };
paho-mqtt = super.paho-mqtt.overridePythonAttrs (oldAttrs: rec {
version = "1.6.1";
src = fetchFromGitHub {
inherit (oldAttrs.src) owner repo;
tag = "v${version}";
hash = "sha256-9nH6xROVpmI+iTKXfwv2Ar1PAmWbEunI3HO0pZyK6Rg=";
};
build-system = with self; [ setuptools ];
doCheck = false;
});
};
};
in