python3Packages.nrgkick-api: 1.5.0 -> 1.7.0 (#484946)

This commit is contained in:
Fabian Affolter
2026-01-29 10:15:34 +00:00
committed by GitHub
@@ -10,16 +10,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "nrgkick-api";
version = "1.5.0";
version = "1.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "andijakl";
repo = "nrgkick-api";
tag = "v${version}";
hash = "sha256-WtSL9fUJF2xsX53epFcY++KwjnAs3YiKHDb2a5x4tfE=";
tag = "v${finalAttrs.version}";
hash = "sha256-q9mLX+DjNSyvjJ6hNPZckaHTNNelOsOlOe9XeVqutaU=";
};
build-system = [ setuptools ];
@@ -38,8 +38,8 @@ buildPythonPackage rec {
meta = {
description = "Python client for NRGkick Gen2 EV charger local REST API";
homepage = "https://github.com/andijakl/nrgkick-api";
changelog = "https://github.com/andijakl/nrgkick-api/releases/tag/${src.tag}";
changelog = "https://github.com/andijakl/nrgkick-api/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})