python312Packages.accuweather: update disabled, drop with lib

This commit is contained in:
Nick Cao 2024-11-22 08:30:12 -05:00
parent bf6aefce63
commit 4d83275699
No known key found for this signature in database

View File

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