diff --git a/pkgs/development/python-modules/aioamazondevices/default.nix b/pkgs/development/python-modules/aioamazondevices/default.nix index ac6ed8e10565..1d08a0521887 100644 --- a/pkgs/development/python-modules/aioamazondevices/default.nix +++ b/pkgs/development/python-modules/aioamazondevices/default.nix @@ -1,11 +1,10 @@ { aiohttp, - babel, beautifulsoup4, buildPythonPackage, colorlog, fetchFromGitHub, - httpx, + langcodes, lib, orjson, poetry-core, @@ -16,24 +15,23 @@ buildPythonPackage rec { pname = "aioamazondevices"; - version = "3.1.14"; + version = "3.2.2"; pyproject = true; src = fetchFromGitHub { owner = "chemelli74"; repo = "aioamazondevices"; tag = "v${version}"; - hash = "sha256-xCXzNeUIw2UxBcOMgab1lpN9/0RGLZAwgtHkZhwqxxY="; + hash = "sha256-dawcskOWIh+TlGh0awJD6ka1HJjGByoLFokq9XWRYoc="; }; build-system = [ poetry-core ]; dependencies = [ aiohttp - babel beautifulsoup4 colorlog - httpx + langcodes orjson yarl ];