python3Packages.great-tables: cleanup, skip failing test

This commit is contained in:
Gaetan Lepage
2026-04-06 23:37:58 +00:00
parent f97e195236
commit 3ddf18ca4e
@@ -33,7 +33,7 @@
syrupy,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "great-tables";
version = "0.21.0";
pyproject = true;
@@ -41,7 +41,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "posit-dev";
repo = "great-tables";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-d5LKKA6KCkkBGibalWkfOTRzf48YEjdtjCdbGpW2AjE=";
};
@@ -83,6 +83,10 @@ buildPythonPackage rec {
"test_save_custom_webdriver"
"test_save_image_file"
"test_save_non_png"
# AssertionError: assert [- snapshot] == [+ received]
# https://github.com/posit-dev/great-tables/issues/826
"test_html_string_generated_inline_css"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Fails due to added newline in HTML output
@@ -95,8 +99,8 @@ buildPythonPackage rec {
meta = {
description = "Library for rendering and formatting dataframes";
homepage = "https://github.com/posit-dev/great-tables";
changelog = "https://github.com/posit-dev/great-tables/releases/tag/${src.tag}";
changelog = "https://github.com/posit-dev/great-tables/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
})