From 4559a0181b71a240a1757d85e763fdd8ea0486b3 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 3 Jul 2025 17:18:42 +0200 Subject: [PATCH] python3Packages.aioamazondevices: 3.1.14 -> 3.2.2 https://github.com/chemelli74/aioamazondevices/blob/v3.2.2/CHANGELOG.md --- .../python-modules/aioamazondevices/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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 ];