Unverified Commit 5c644236 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

python312Packages.great-tables: fix on darwin (#341873)

parents acdc6d79 bf9554b1
Loading
Loading
Loading
Loading
+12 −7
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,

  # build-system
  setuptools,
  setuptools-scm,
  pytestCheckHook,
  pytest-cov-stub,

  # dependencies
  babel,
  commonmark,
  htmltools,
  importlib-metadata,
  importlib-resources,
  ipykernel,
  ipython,
  numpy,
  typing-extensions,

  # tests
  ipykernel,
  ipython,
  pandas,
  polars,
  pyarrow,
  pytestCheckHook,
  pytest-cov-stub,
  requests,
  syrupy,
}:
@@ -28,8 +33,6 @@ buildPythonPackage rec {
  version = "0.11.0";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "posit-dev";
    repo = "great-tables";
@@ -76,6 +79,8 @@ buildPythonPackage rec {
    "test_save_non_png"
  ];

  __darwinAllowLocalNetworking = true;

  meta = {
    description = "Library for rendering and formatting dataframes";
    homepage = "https://github.com/posit-dev/great-tables";