From 99055465f6ce389f2eed4ca966e33167b5159224 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 1 Feb 2025 09:16:28 +0100 Subject: [PATCH] python313Packages.deebot-client: 11.0.0 -> 11.1.0b2 Changelog: https://github.com/DeebotUniverse/client.py/releases/tag/11.1.0b2 --- .../python-modules/deebot-client/default.nix | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/deebot-client/default.nix b/pkgs/development/python-modules/deebot-client/default.nix index 2260e5ce30a7..f3c63d63c540 100644 --- a/pkgs/development/python-modules/deebot-client/default.nix +++ b/pkgs/development/python-modules/deebot-client/default.nix @@ -12,6 +12,7 @@ pkg-config, pycountry, pytest-asyncio, + pytest-codspeed, pytestCheckHook, pythonOlder, rustPlatform, @@ -22,7 +23,7 @@ buildPythonPackage rec { pname = "deebot-client"; - version = "11.0.0"; + version = "11.1.0b2"; pyproject = true; disabled = pythonOlder "3.12"; @@ -31,12 +32,12 @@ buildPythonPackage rec { owner = "DeebotUniverse"; repo = "client.py"; tag = version; - hash = "sha256-G8NLirz81+b2YJBvxmfCEPpy2M9MMvs3n6JmdXR+3oc="; + hash = "sha256-nvuIjVf7r2CcuHWyIox1P8nuBB4DReV6jrwr4SLJhHA="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit pname version src; - hash = "sha256-9rXd5FFR+Ma0LJfKXwkDqZp096PA34V7TzPe/tahE7c="; + hash = "sha256-KmY8fWvfEkCx+Q3OOgqI/5+PCr3ZNYAHweabwIBd+DA="; }; pythonRelaxDeps = [ @@ -49,13 +50,9 @@ buildPythonPackage rec { maturinBuildHook ]; - nativeBuildInputs = [ - pkg-config - ]; + nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - xz - ]; + buildInputs = [ xz ]; dependencies = [ aiohttp @@ -71,6 +68,7 @@ buildPythonPackage rec { docker pycountry pytest-asyncio + pytest-codspeed pytestCheckHook testfixtures ];