From 9fdc90c65dfd4734a2e787f8311d639c746f1ebe Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 23 Nov 2022 18:55:17 +0100 Subject: [PATCH 1/2] python310Packages.meshtastic: add changelog to meta --- pkgs/development/python-modules/meshtastic/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix index 741388f363c1..0321635ea84b 100644 --- a/pkgs/development/python-modules/meshtastic/default.nix +++ b/pkgs/development/python-modules/meshtastic/default.nix @@ -103,6 +103,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python API for talking to Meshtastic devices"; homepage = "https://github.com/meshtastic/Meshtastic-python"; + changelog = "https://github.com/meshtastic/python/releases/tag/${version}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; }; From a22a960374e13063c69e88b3a37e19847350afaf Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 23 Nov 2022 18:57:45 +0100 Subject: [PATCH 2/2] python310Packages.meshtastic: 2.0.3 -> 2.0.4 Changelog: https://github.com/meshtastic/python/releases/tag/2.0.4 --- pkgs/development/python-modules/meshtastic/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix index 0321635ea84b..dc545b48874a 100644 --- a/pkgs/development/python-modules/meshtastic/default.nix +++ b/pkgs/development/python-modules/meshtastic/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "meshtastic"; - version = "2.0.3"; + version = "2.0.4"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "meshtastic"; repo = "Meshtastic-python"; rev = "refs/tags/${version}"; - hash = "sha256-h8OuDmm9I8lElhAGSpPx8sPUTY+EnFp2VXOYrYjiYNk="; + hash = "sha256-WPmoK/5pTVv9ueRnR6Gxtj86LM8ChB0dMfEvo+lLmy0="; }; propagatedBuildInputs = [ @@ -98,6 +98,8 @@ buildPythonPackage rec { "test_watchGPIOs" "test_writeConfig_with_no_radioConfig" "test_writeGPIOs" + "test_reboot" + "test_shutdown" ]; meta = with lib; {