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