python3Packages.zeversolar: 0.3.2 -> 0.4.0 (#527305)

This commit is contained in:
Fabian Affolter
2026-06-02 22:08:32 +00:00
committed by GitHub
@@ -9,16 +9,16 @@
retry2,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "zeversolar";
version = "0.3.2";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kvanzuijlen";
repo = "zeversolar";
tag = version;
hash = "sha256-HnF21B7k2MmugMjGIF2EKwwXJWD/WdDvPdz1oaPSS5Y=";
tag = finalAttrs.version;
hash = "sha256-6hAvZL4PbtuFnDXRrVeYuylR9SIZ9B46CA0Ms/w4Y24=";
};
build-system = [ poetry-core ];
@@ -38,8 +38,8 @@ buildPythonPackage rec {
meta = {
description = "Module to interact with the local CGI provided by ZeverSolar";
homepage = "https://github.com/kvanzuijlen/zeversolar";
changelog = "https://github.com/kvanzuijlen/zeversolar/releases/tag/${version}";
changelog = "https://github.com/kvanzuijlen/zeversolar/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})