From 7b84adab8225effbf6f3bd98abe401ac9fedd809 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 2 Jul 2026 18:04:16 +0200 Subject: [PATCH] python3Packages.db-dtypes: ignore numpy deprecations --- pkgs/development/python-modules/db-dtypes/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/db-dtypes/default.nix b/pkgs/development/python-modules/db-dtypes/default.nix index c2bb9a49595a..4393f725aafe 100644 --- a/pkgs/development/python-modules/db-dtypes/default.nix +++ b/pkgs/development/python-modules/db-dtypes/default.nix @@ -45,6 +45,10 @@ buildPythonPackage (finalAttrs: { nativeCheckInputs = [ pytestCheckHook ]; + pytestFlags = [ + "-Wignore::DeprecationWarning" + ]; + pythonImportsCheck = [ "db_dtypes" ]; meta = {