python3Packages.pyvesync: 3.4.1 -> 3.4.2

https://github.com/webdjoe/pyvesync/releases/tag/3.4.2
This commit is contained in:
Martin Weinelt
2026-06-04 16:31:30 +02:00
parent 322427c365
commit a6dea6e21c
@@ -11,16 +11,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyvesync";
version = "3.4.1";
version = "3.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "webdjoe";
repo = "pyvesync";
tag = version;
hash = "sha256-fruuFt7Zb5ZDX8MmEXB4rypuYON3UG50mExnMpMQct4=";
tag = finalAttrs.version;
hash = "sha256-pJv5CMsM82ZUfc9ZuuAut+wHp2pMHOeOqMcH1jg3uRs=";
};
build-system = [ setuptools ];
@@ -43,8 +43,8 @@ buildPythonPackage rec {
meta = {
description = "Python library to manage Etekcity Devices and Levoit Air Purifier";
homepage = "https://github.com/webdjoe/pyvesync";
changelog = "https://github.com/webdjoe/pyvesync/releases/tag/${src.tag}";
changelog = "https://github.com/webdjoe/pyvesync/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})