home-assistant: ignore Pydantic deprecation warnigns for mcp package

We bumped the python3Packages.mcp package, and were able to remove this set of
flags due to the Pydantic library also being updated. However, since
home-assistant still seems to be using 1.5.0, and overriding it here, these
flags are still needed in this particular case.
This commit is contained in:
Bryan Honof
2025-08-02 15:43:41 +02:00
parent 231f9dfbe0
commit 7f41f985d9
+4
View File
@@ -147,6 +147,10 @@ let
tag = "v${version}";
hash = "sha256-Z2NN6k4mD6NixDON1MUOELpBZW9JvMvFErcCbFPdg2o=";
};
pytestFlagsArray = [
"-W"
"ignore::pydantic.warnings.PydanticDeprecatedSince211"
];
});
notifications-android-tv = super.notifications-android-tv.overridePythonAttrs (oldAttrs: rec {