This commit is contained in:
mjallen18
2026-01-12 12:08:36 -06:00
parent dfd8d9a1a8
commit 382f059188
27 changed files with 151 additions and 154 deletions

View File

@@ -8,7 +8,7 @@
python3Packages.buildPythonPackage rec {
pname = "python-roborock";
version = "4.2.0";
version = "4.4.0";
pyproject = true;
disabled = python3Packages.pythonOlder "3.11";
@@ -17,10 +17,13 @@ python3Packages.buildPythonPackage rec {
owner = "humbertogontijo";
repo = "python-roborock";
tag = "v${version}";
hash = "sha256-2XY07JJ4t8jOqthBi41hrC0tEIgWKF7OmMcxlPoX8bw=";
hash = "sha256-zswKFRde6N8tciRiXzEnQKArzrbtrKaM+78s2N846S8=";
};
pythonRelaxDeps = [ "pycryptodome" ];
pythonRelaxDeps = [
"aiomqtt"
"pycryptodome"
];
build-system = with python3Packages; [
poetry-core

View File

@@ -6,7 +6,7 @@
python3Packages.buildPythonPackage rec {
pname = "pyvesync";
version = "3.3.3";
version = "3.4.0";
pyproject = true;
disabled = python3Packages.pythonOlder "3.11";
@@ -14,8 +14,8 @@ python3Packages.buildPythonPackage rec {
src = fetchFromGitHub {
owner = "webdjoe";
repo = "pyvesync";
rev = "3.3.3";
hash = "sha256-T8cDp1C95gubCfgvkEiqHUn4Rw7pFNCPELo3qNwt9vI=";
rev = version;
hash = "sha256-G1Ov8xXIVkklxfLqhHiYbRgHEsjTQhG7k1V6Amtc+w4=";
};
build-system = with python3Packages; [ setuptools ];