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 ];