about summary refs log tree commit diff
path: root/pkgs/development/python-modules/meshtastic/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/meshtastic/default.nix')
-rw-r--r--pkgs/development/python-modules/meshtastic/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix
index 63a4d364623c8..9dcc2d4a3a56f 100644
--- a/pkgs/development/python-modules/meshtastic/default.nix
+++ b/pkgs/development/python-modules/meshtastic/default.nix
@@ -1,4 +1,5 @@
 { lib
+, bleak
 , buildPythonPackage
 , dotmap
 , fetchFromGitHub
@@ -20,8 +21,8 @@
 
 buildPythonPackage rec {
   pname = "meshtastic";
-  version = "2.2.17";
-  format = "setuptools";
+  version = "2.2.19";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
@@ -29,10 +30,15 @@ buildPythonPackage rec {
     owner = "meshtastic";
     repo = "Meshtastic-python";
     rev = "refs/tags/${version}";
-    hash = "sha256-QmsnQf7bHTlVbSwp/jai1uTrBr/iHaf9DhMxgTujQUc=";
+    hash = "sha256-5VXvh0W3llSnpIalg1e+JyFgmlTV5J2x4VC/j2+9Xb8=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [
+    bleak
     dotmap
     pexpect
     protobuf
@@ -41,8 +47,8 @@ buildPythonPackage rec {
     pyqrcode
     pyserial
     pyyaml
-    setuptools
     requests
+    setuptools
     tabulate
     timeago
   ];