diff --git a/pkgs/development/python-modules/python-matter-server/default.nix b/pkgs/development/python-modules/python-matter-server/default.nix index 11ac0d27545e..9f860cdf7b54 100644 --- a/pkgs/development/python-modules/python-matter-server/default.nix +++ b/pkgs/development/python-modules/python-matter-server/default.nix @@ -9,10 +9,11 @@ # build setuptools, - # propagates + # dependencies aiohttp, aiorun, async-timeout, + atomicwrites, coloredlogs, orjson, home-assistant-chip-clusters, @@ -55,7 +56,7 @@ in buildPythonPackage rec { pname = "python-matter-server"; - version = "6.6.0"; + version = "7.0.1"; pyproject = true; disabled = pythonOlder "3.10"; @@ -64,7 +65,7 @@ buildPythonPackage rec { owner = "home-assistant-libs"; repo = "python-matter-server"; rev = "refs/tags/${version}"; - hash = "sha256-g+97a/X0FSapMLfdW6iNf1akkHGLqCmHYimQU/M6loo="; + hash = "sha256-kwN7mLSKrxsAydp7PnN7kTvvi5zQSpXVwMh2slL6aIA="; }; patches = [ @@ -90,6 +91,7 @@ buildPythonPackage rec { aiohttp aiorun async-timeout + atomicwrites coloredlogs orjson home-assistant-chip-clusters @@ -117,6 +119,11 @@ buildPythonPackage rec { export PYTHONPATH=${pythonEnv}/${python.sitePackages} ''; + disabledTestPaths = [ + # requires internet access + "tests/server/ota/test_dcl.py" + ]; + meta = with lib; { changelog = "https://github.com/home-assistant-libs/python-matter-server/releases/tag/${version}"; description = "Python server to interact with Matter";