python3Packages.voip-utils: 0.3.5 -> 0.4.0

https://github.com/home-assistant-libs/voip-utils/blob/v0.4.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt 2026-07-04 21:26:41 +02:00
commit d7a978afee
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -3,20 +3,20 @@
buildPythonPackage,
fetchFromGitHub,
setuptools,
opuslib,
opuslib-next,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "voip-utils";
version = "0.3.5";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "voip-utils";
tag = "v${version}";
hash = "sha256-/HSbtP9UAGOs4aZmdinijCMe16HtBH7YuhFM7h158lc=";
hash = "sha256-kvuNqiBjcDQ53X6LbnOp2WNh8QOu+ExjhfgKWBoSsH0=";
};
postPatch = ''
@ -26,9 +26,9 @@ buildPythonPackage rec {
build-system = [ setuptools ];
pythonRelaxDeps = [ "opuslib" ];
pythonRelaxDeps = [ "opuslib-next" ];
dependencies = [ opuslib ];
dependencies = [ opuslib-next ];
pythonImportsCheck = [ "voip_utils" ];