From a3be47ff433368999f1a33be9596aaf50e47cf7c Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Wed, 15 Oct 2025 18:06:22 +0000 Subject: [PATCH 1/3] python312Packages.ibis-framework: 10.8.0 -> 11.0.0 --- pkgs/development/python-modules/ibis-framework/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ibis-framework/default.nix b/pkgs/development/python-modules/ibis-framework/default.nix index 2939b7c2ab9c..5832f88e0e6f 100644 --- a/pkgs/development/python-modules/ibis-framework/default.nix +++ b/pkgs/development/python-modules/ibis-framework/default.nix @@ -98,14 +98,14 @@ in buildPythonPackage rec { pname = "ibis-framework"; - version = "10.8.0"; + version = "11.0.0"; pyproject = true; src = fetchFromGitHub { owner = "ibis-project"; repo = "ibis"; tag = version; - hash = "sha256-Uuqm9Exu/oK3BGBL4ViUOGArMWhVutUn1gFRj1I4vt4="; + hash = "sha256-hf5guWeX9WQbKaNrs7ALwwDxV1Rgeb5Z0PedTQ4P7S0="; }; build-system = [ @@ -175,6 +175,9 @@ buildPythonPackage rec { # duckdb ParserError: syntax error at or near "AT" "test_90" + + # assert 0 == 3 (tests edge case behavior of databases) + "test_self_join_with_generated_keys" ]; # patch out tests that check formatting with black From 71ae8f589a845f8bb194f7af6b2e24930dfccb62 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Thu, 16 Oct 2025 12:03:21 -0700 Subject: [PATCH 2/3] python3Packages.narwhals: disable test that's incompatible w/ ibis 11 --- pkgs/development/python-modules/narwhals/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/narwhals/default.nix b/pkgs/development/python-modules/narwhals/default.nix index 2006fa640a03..9c7c61b74527 100644 --- a/pkgs/development/python-modules/narwhals/default.nix +++ b/pkgs/development/python-modules/narwhals/default.nix @@ -73,6 +73,8 @@ buildPythonPackage rec { "test_convert_time_zone_to_connection_tz_pyspark" "test_replace_time_zone_to_connection_tz_pyspark" "test_lazy" + # Incompatible with ibis 11 + "test_unique_3069" ]; pytestFlags = [ From 82c702fc8ac0b67da28729732f011c26b80c0ab5 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Thu, 16 Oct 2025 12:43:16 -0700 Subject: [PATCH 3/3] python3Packages.pandera: disable tests that need updating for Ibis 11 --- pkgs/development/python-modules/pandera/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pandera/default.nix b/pkgs/development/python-modules/pandera/default.nix index c42958c57fa9..d1ac3c140a51 100644 --- a/pkgs/development/python-modules/pandera/default.nix +++ b/pkgs/development/python-modules/pandera/default.nix @@ -133,6 +133,10 @@ buildPythonPackage rec { # KeyError: 'dask' "tests/dask/test_dask.py::test_series_schema" "tests/dask/test_dask_accessor.py::test_dataframe_series_add_schema" + + # TypeError: memtable() got an unexpected keyword argument 'name' + # https://github.com/unionai-oss/pandera/issues/2154 + "tests/ibis/test_ibis_container.py" ]; disabledTests = [