python313Packages.proto-plus: ignore more warnings

K900 cd1056f2 41cbb2b5

Changed files
+2
pkgs
development
python-modules
proto-plus
+2
pkgs/development/python-modules/proto-plus/default.nix
···
pytestFlags = [
# pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
"-Wignore::DeprecationWarning"
];
pythonImportsCheck = [ "proto" ];
···
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" ];