lol

ha-mqtt-discoverable-cli: pin paho-mqtt to v1

+12 -3
+12 -3
pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix
··· 4 4 python3, 5 5 }: 6 6 7 - python3.pkgs.buildPythonApplication rec { 7 + let 8 + python = python3.override { 9 + self = python; 10 + packageOverrides = self: super: { 11 + # https://github.com/unixorn/ha-mqtt-discoverable/pull/310 12 + paho-mqtt = self.paho-mqtt_1; 13 + }; 14 + }; 15 + in 16 + python.pkgs.buildPythonApplication rec { 8 17 pname = "ha-mqtt-discoverable-cli"; 9 18 version = "0.16.4.1"; 10 19 pyproject = true; ··· 18 27 19 28 pythonRelaxDeps = [ "ha-mqtt-discoverable" ]; 20 29 21 - build-system = with python3.pkgs; [ poetry-core ]; 30 + build-system = with python.pkgs; [ poetry-core ]; 22 31 23 - dependencies = with python3.pkgs; [ ha-mqtt-discoverable ]; 32 + dependencies = with python.pkgs; [ ha-mqtt-discoverable ]; 24 33 25 34 # Project has no real tests 26 35 doCheck = false;