about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-01-17 10:59:52 -0500
committerGitHub <noreply@github.com>2024-01-17 10:59:52 -0500
commitd3506810545c5ca653801a9caed6c9d02cb02ea2 (patch)
tree5d14b6554ae9b2e3cf1ce6fc4b39c8761b498ee0 /pkgs
parent5c3fd4cd1f73c4cfdc8251ec37c9d3ee3b289234 (diff)
parent0059592746e0129edc9dbcc303cb7fa17f29487f (diff)
Merge pull request #281516 from fabaff/meshtastic-bump
 python311Packages.meshtastic: 2.2.17 -> 2.2.18 
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/meshtastic/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix
index 63a4d364623c8..27e243ff61b88 100644
--- a/pkgs/development/python-modules/meshtastic/default.nix
+++ b/pkgs/development/python-modules/meshtastic/default.nix
@@ -20,8 +20,8 @@
 
 buildPythonPackage rec {
   pname = "meshtastic";
-  version = "2.2.17";
-  format = "setuptools";
+  version = "2.2.18";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
@@ -29,9 +29,13 @@ buildPythonPackage rec {
     owner = "meshtastic";
     repo = "Meshtastic-python";
     rev = "refs/tags/${version}";
-    hash = "sha256-QmsnQf7bHTlVbSwp/jai1uTrBr/iHaf9DhMxgTujQUc=";
+    hash = "sha256-r3Hs3oD6CyYa/Ew0wMiLeUj/R4aa8Wc/W65EXMrPGmw=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [
     dotmap
     pexpect
@@ -41,8 +45,8 @@ buildPythonPackage rec {
     pyqrcode
     pyserial
     pyyaml
-    setuptools
     requests
+    setuptools
     tabulate
     timeago
   ];