python313Packages.pyvicare: 2.55.1 -> 2.56.0 (#483937)

This commit is contained in:
Fabian Affolter
2026-01-26 13:37:01 +00:00
committed by GitHub
@@ -10,21 +10,21 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyvicare";
version = "2.55.1";
version = "2.56.0";
pyproject = true;
src = fetchFromGitHub {
owner = "openviess";
repo = "PyViCare";
tag = version;
hash = "sha256-fKQ0NXUsL8NgmKr8BEoGV2fty39l19fg4B6Eg90X2kI=";
tag = finalAttrs.version;
hash = "sha256-DRCetTR7sFaShau3in0548FoR+rOaG28SGqfAjAVsn4=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'version = "0.1.0"' 'version = "${version}"'
--replace-fail 'version = "0.1.0"' 'version = "${finalAttrs.version}"'
'';
build-system = [ poetry-core ];
@@ -43,10 +43,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "PyViCare" ];
meta = {
changelog = "https://github.com/openviess/PyViCare/releases/tag/${src.tag}";
description = "Python Library to access Viessmann ViCare API";
homepage = "https://github.com/somm15/PyViCare";
license = with lib.licenses; [ asl20 ];
changelog = "https://github.com/openviess/PyViCare/releases/tag/${finalAttrs.version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})