python314Packages.ibis-framework: disable additional failing test (#477891)

This commit is contained in:
Sandro
2026-01-14 07:42:37 +00:00
committed by GitHub
@@ -97,7 +97,7 @@ let
};
in
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "ibis-framework";
version = "11.0.0";
pyproject = true;
@@ -105,7 +105,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "ibis-project";
repo = "ibis";
tag = version;
tag = finalAttrs.version;
hash = "sha256-hf5guWeX9WQbKaNrs7ALwwDxV1Rgeb5Z0PedTQ4P7S0=";
};
@@ -139,7 +139,7 @@ buildPythonPackage rec {
pytest-xdist
writableTmpDirAsHomeHook
]
++ lib.concatMap (name: optional-dependencies.${name}) testBackends;
++ lib.concatMap (name: finalAttrs.passthru.optional-dependencies.${name}) testBackends;
pytestFlags = [
"--benchmark-disable"
@@ -186,6 +186,7 @@ buildPythonPackage rec {
]
++ lib.optionals (pythonAtLeast "3.14") [
# ExceptionGroup: multiple unraisable exception warnings (4 sub-exceptions)
"test_non_roundtripable_str_type"
"test_parse_dtype_roundtrip"
# AssertionError: value does not match the expected value in snapshot ...
@@ -372,11 +373,11 @@ buildPythonPackage rec {
meta = {
description = "Productivity-centric Python Big Data Framework";
homepage = "https://github.com/ibis-project/ibis";
changelog = "https://github.com/ibis-project/ibis/blob/${src.tag}/docs/release_notes.md";
changelog = "https://github.com/ibis-project/ibis/blob/${finalAttrs.src.tag}/docs/release_notes.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
cpcloud
sarahec
];
};
}
})