Skip to content

Commit 7f7bdef

Browse files
committed
python311Packages.weconnect-mqtt: fix build
1 parent e2b0ccc commit 7f7bdef

File tree

1 file changed

+5
-5
lines changed
  • pkgs/development/python-modules/weconnect-mqtt

1 file changed

+5
-5
lines changed

pkgs/development/python-modules/weconnect-mqtt/default.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lib,
33
buildPythonPackage,
44
fetchFromGitHub,
5-
paho-mqtt,
5+
paho-mqtt_2,
66
pytestCheckHook,
77
python-dateutil,
88
pythonOlder,
@@ -40,7 +40,7 @@ buildPythonPackage rec {
4040

4141

4242
dependencies = [
43-
paho-mqtt
43+
paho-mqtt_2
4444
python-dateutil
4545
weconnect
4646
] ++ weconnect.optional-dependencies.Images;
@@ -49,12 +49,12 @@ buildPythonPackage rec {
4949

5050
pythonImportsCheck = [ "weconnect_mqtt" ];
5151

52-
meta = with lib; {
52+
meta = {
5353
description = "Python client that publishes data from Volkswagen WeConnect";
5454
homepage = "https://github.com/tillsteinbach/WeConnect-mqtt";
5555
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 ];
5858
mainProgram = "weconnect-mqtt";
5959
};
6060
}

0 commit comments

Comments
 (0)