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

Changed files
+12 -7
pkgs
development
python-modules
great-tables
+12 -7
pkgs/development/python-modules/great-tables/default.nix
···
{
lib,
buildPythonPackage,
-
pythonOlder,
fetchFromGitHub,
setuptools,
setuptools-scm,
-
pytestCheckHook,
-
pytest-cov-stub,
babel,
commonmark,
htmltools,
importlib-metadata,
importlib-resources,
ipykernel,
ipython,
-
numpy,
-
typing-extensions,
pandas,
polars,
pyarrow,
requests,
syrupy,
}:
···
pname = "great-tables";
version = "0.11.0";
pyproject = true;
-
-
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "posit-dev";
···
"test_save_image_file"
"test_save_non_png"
];
meta = {
description = "Library for rendering and formatting dataframes";
···
{
lib,
buildPythonPackage,
fetchFromGitHub,
+
+
# build-system
setuptools,
setuptools-scm,
+
+
# dependencies
babel,
commonmark,
htmltools,
importlib-metadata,
importlib-resources,
+
numpy,
+
typing-extensions,
+
+
# tests
ipykernel,
ipython,
pandas,
polars,
pyarrow,
+
pytestCheckHook,
+
pytest-cov-stub,
requests,
syrupy,
}:
···
pname = "great-tables";
version = "0.11.0";
pyproject = true;
src = fetchFromGitHub {
owner = "posit-dev";
···
"test_save_image_file"
"test_save_non_png"
];
+
+
__darwinAllowLocalNetworking = true;
meta = {
description = "Library for rendering and formatting dataframes";