From cd1056f280e55fa8960559ec61576e537b1e8dbc Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 31 Aug 2025 08:47:29 +0300 Subject: [PATCH] python313Packages.proto-plus: ignore more warnings --- pkgs/development/python-modules/proto-plus/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/proto-plus/default.nix b/pkgs/development/python-modules/proto-plus/default.nix index 13120930f0b1..f211febbe5c4 100644 --- a/pkgs/development/python-modules/proto-plus/default.nix +++ b/pkgs/development/python-modules/proto-plus/default.nix @@ -34,6 +34,8 @@ buildPythonPackage rec { pytestFlags = [ # pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html "-Wignore::DeprecationWarning" + # float_precision option is deprecated for json_format error with latest protobuf + "-Wignore:float_precision:UserWarning" ]; pythonImportsCheck = [ "proto" ];