python312Packages.meshtastic: 2.3.3 -> 2.3.4

Changelog: https://github.com/meshtastic/python/releases/tag/2.3.4
This commit is contained in:
Fabian Affolter 2024-04-09 23:21:41 +02:00
parent 5bf0a30b80
commit b36107b4fd
1 changed files with 11 additions and 7 deletions

View File

@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "meshtastic";
version = "2.3.3";
version = "2.3.4";
pyproject = true;
disabled = pythonOlder "3.7";
@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "meshtastic";
repo = "Meshtastic-python";
rev = "refs/tags/${version}";
hash = "sha256-kydZgOiQHDovQ5RwyLru2nyHoCEVZClq8wJit/mnbvU=";
hash = "sha256-WxiddF1n9lyxKkZk1MU40NzLh6goLVs81mbJZ3F33R8=";
};
build-system = [
@ -74,13 +74,17 @@ buildPythonPackage rec {
disabledTests = [
# TypeError
"test_main_info"
"test_main_support"
"test_main_info_with_tcp_interfa"
"test_main_no_proto"
"test_main_info_with_seriallog_stdout"
"test_main_info_with_seriallog_output_txt"
"test_main_info_with_seriallog_stdout"
"test_main_info_with_tcp_interfa"
"test_main_info"
"test_main_no_proto"
"test_main_support"
"test_MeshInterface"
"test_message_to_json_shows_all"
"test_SerialInterface_single_port"
"test_support_info"
"test_TCPInterface"
];
meta = with lib; {