diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix index 63a4d364623c..27e243ff61b8 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 ];