From 8a12bdc761604707283971937010d61061a9c043 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 1 Mar 2026 22:59:39 +0000 Subject: [PATCH 1/2] python3Packages.accuweather: 5.0.0 -> 5.1.0 --- pkgs/development/python-modules/accuweather/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/accuweather/default.nix b/pkgs/development/python-modules/accuweather/default.nix index 431bb391292e..f8460f1b59de 100644 --- a/pkgs/development/python-modules/accuweather/default.nix +++ b/pkgs/development/python-modules/accuweather/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "accuweather"; - version = "5.0.0"; + version = "5.1.0"; pyproject = true; src = fetchFromGitHub { owner = "bieniu"; repo = "accuweather"; tag = version; - hash = "sha256-EM0DpFvToPgI0PSFYlJsQQ16Uh1qd0ARp1ucvUD16ss="; + hash = "sha256-IXsf78AN5Gl6itQBfxwMEWE0ggoUohD0RgMgsgLaXOI="; }; build-system = [ setuptools ]; From a7a578479a680b2c026d8fb1f373be7a86912daa Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Mon, 2 Mar 2026 20:04:40 -0800 Subject: [PATCH 2/2] python3Packages.accuweather: add dependency on yarl --- pkgs/development/python-modules/accuweather/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/accuweather/default.nix b/pkgs/development/python-modules/accuweather/default.nix index f8460f1b59de..91318f108b18 100644 --- a/pkgs/development/python-modules/accuweather/default.nix +++ b/pkgs/development/python-modules/accuweather/default.nix @@ -10,6 +10,7 @@ pytestCheckHook, setuptools, syrupy, + yarl, }: buildPythonPackage rec { @@ -29,6 +30,7 @@ buildPythonPackage rec { dependencies = [ aiohttp orjson + yarl ]; nativeCheckInputs = [