python3Packages.weconnect-mqtt: fix build (#356390)

authored by Leona Maroni and committed by GitHub f38cc637 f3a1d218

+5 -5
+5 -5
pkgs/development/python-modules/weconnect-mqtt/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - paho-mqtt, 5 + paho-mqtt_2, 6 6 pytestCheckHook, 7 7 python-dateutil, 8 8 pythonOlder, ··· 40 40 41 41 42 42 dependencies = [ 43 - paho-mqtt 43 + paho-mqtt_2 44 44 python-dateutil 45 45 weconnect 46 46 ] ++ weconnect.optional-dependencies.Images; ··· 49 49 50 50 pythonImportsCheck = [ "weconnect_mqtt" ]; 51 51 52 - meta = with lib; { 52 + meta = { 53 53 description = "Python client that publishes data from Volkswagen WeConnect"; 54 54 homepage = "https://github.com/tillsteinbach/WeConnect-mqtt"; 55 55 changelog = "https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v${version}"; 56 - license = with licenses; [ mit ]; 57 - maintainers = with maintainers; [ fab ]; 56 + license = with lib.licenses; [ mit ]; 57 + maintainers = with lib.maintainers; [ fab ]; 58 58 mainProgram = "weconnect-mqtt"; 59 59 }; 60 60 }