python312Packages.pyatmo: 8.1.0 -> 9.0.0 (#395670)

This commit is contained in:
dotlambda
2025-05-06 23:25:59 -07:00
committed by GitHub
@@ -17,16 +17,16 @@
buildPythonPackage rec {
pname = "pyatmo";
version = "8.1.0";
version = "9.0.0";
pyproject = true;
disabled = pythonOlder "3.10";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "jabesq";
repo = "pyatmo";
tag = "v${version}";
hash = "sha256-SRuBV7XWt4Myks7kbUzGAscggspUbRoLOvYNiorF8To=";
hash = "sha256-DGtfXM0Bfo5iyJ66/Bm5rQB2/ZYA+ZhlkUci1viynWY=";
};
pythonRelaxDeps = [
@@ -57,7 +57,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Simple API to access Netatmo weather station data";
homepage = "https://github.com/jabesq/pyatmo";
changelog = "https://github.com/jabesq/pyatmo/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/jabesq/pyatmo/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
};