Unverified Commit 7b609cb9 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

python3Packages.great-tables: cleanup, skip failing test (#507420)

parents 8fe8260e 3ddf18ca
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})