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

This commit is contained in:
Peder Bergebakken Sundt 2024-09-14 19:57:04 +02:00 committed by GitHub
commit 5c644236ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,24 +1,29 @@
{
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";