From 4d832756997cb9c9c9fd45972709425c17b894a4 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Fri, 22 Nov 2024 08:30:12 -0500 Subject: [PATCH] python312Packages.accuweather: update disabled, drop with lib --- pkgs/development/python-modules/accuweather/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/accuweather/default.nix b/pkgs/development/python-modules/accuweather/default.nix index 59c2f374c2d7..aca3f8e522cc 100644 --- a/pkgs/development/python-modules/accuweather/default.nix +++ b/pkgs/development/python-modules/accuweather/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { version = "4.0.0"; pyproject = true; - disabled = pythonOlder "3.11"; + disabled = pythonOlder "3.12"; src = fetchFromGitHub { owner = "bieniu"; @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "accuweather" ]; - meta = with lib; { + meta = { description = "Python wrapper for getting weather data from AccuWeather servers"; homepage = "https://github.com/bieniu/accuweather"; changelog = "https://github.com/bieniu/accuweather/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jamiemagee ]; }; }