python3Packages.pyeconet: 0.2.1 -> 0.2.2 (#498120)

This commit is contained in:
Fabian Affolter
2026-03-09 20:33:17 +00:00
committed by GitHub
@@ -7,16 +7,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyeconet";
version = "0.2.1";
version = "0.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "w1ll1am23";
repo = "pyeconet";
tag = "v${version}";
hash = "sha256-Gep2XGWiaO7IRJ1BouwQ2VrbDPNPZVhiqlGTVWOsQgM=";
tag = "v${finalAttrs.version}";
hash = "sha256-sQXIMm5ddkqkFgTYOsy9srKxLUy505iFhrtGAbOLzc0=";
};
build-system = [ setuptools ];
@@ -36,8 +36,8 @@ buildPythonPackage rec {
meta = {
description = "Python interface to the EcoNet API";
homepage = "https://github.com/w1ll1am23/pyeconet";
changelog = "https://github.com/w1ll1am23/pyeconet/releases/tag/${src.tag}";
changelog = "https://github.com/w1ll1am23/pyeconet/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})