diff --git a/pkgs/development/python-modules/deebot-client/default.nix b/pkgs/development/python-modules/deebot-client/default.nix index b968b4fff2cf..ba6032006d7a 100644 --- a/pkgs/development/python-modules/deebot-client/default.nix +++ b/pkgs/development/python-modules/deebot-client/default.nix @@ -7,6 +7,7 @@ defusedxml, docker, fetchFromGitHub, + orjson, pkg-config, pycountry, pytest-asyncio, @@ -20,7 +21,7 @@ buildPythonPackage rec { pname = "deebot-client"; - version = "13.7.0"; + version = "15.0.0"; pyproject = true; disabled = pythonOlder "3.13"; @@ -29,17 +30,18 @@ buildPythonPackage rec { owner = "DeebotUniverse"; repo = "client.py"; tag = version; - hash = "sha256-38o4hSeCxeKbfjG30XN3pex4hI4mAKRGvaybAlo8hV8="; + hash = "sha256-rTVVcbA0lsnxOlzyLq9Br9maw8CRNpww9T/FnTGCKmw="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-KeOoOupIParD8id7xlkBigjr5Lo9yeFkClh4pPQE3cM="; + hash = "sha256-IdaBhExbH0yotjMjkqgdbyVMrFMfAItM6vadYlldCIE="; }; pythonRelaxDeps = [ "aiohttp" "defusedxml" + "orjson" ]; nativeBuildInputs = [ @@ -55,6 +57,7 @@ buildPythonPackage rec { aiomqtt cachetools defusedxml + orjson ]; nativeCheckInputs = [