From a7c7aa005ea725fccba482c562717c089f84e57a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 15 Aug 2025 21:20:20 +0200 Subject: [PATCH] python313Packages.python-snoo: 0.7.0 -> 0.8.3 Changelog: https://github.com/Lash-L/python-snoo/blob/v0.8.3/CHANGELOG.md --- pkgs/development/python-modules/python-snoo/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-snoo/default.nix b/pkgs/development/python-modules/python-snoo/default.nix index 73fc64965117..25b5be31d08e 100644 --- a/pkgs/development/python-modules/python-snoo/default.nix +++ b/pkgs/development/python-modules/python-snoo/default.nix @@ -4,20 +4,21 @@ fetchFromGitHub, poetry-core, aiohttp, + aiomqtt, freenub, mashumaro, }: buildPythonPackage rec { pname = "python-snoo"; - version = "0.7.0"; + version = "0.8.3"; pyproject = true; src = fetchFromGitHub { owner = "Lash-L"; repo = "python-snoo"; tag = "v${version}"; - hash = "sha256-AHCQeajCUCDjLmlbSrVmp2C9NB2naXsYAe6mCbWQfmQ="; + hash = "sha256-V+abmzQhzbRY+aJDThV+qXExNLKiahwxVR8WnXEP1vc="; }; postPatch = '' @@ -29,6 +30,7 @@ buildPythonPackage rec { dependencies = [ aiohttp + aiomqtt freenub mashumaro ];