Skip to content

Commit 5c64423

Browse files
authored
python312Packages.great-tables: fix on darwin (#341873)
2 parents acdc6d7 + bf9554b commit 5c64423

File tree

1 file changed

+12
-7
lines changed
  • pkgs/development/python-modules/great-tables

1 file changed

+12
-7
lines changed

pkgs/development/python-modules/great-tables/default.nix

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
{
22
lib,
33
buildPythonPackage,
4-
pythonOlder,
54
fetchFromGitHub,
5+
6+
# build-system
67
setuptools,
78
setuptools-scm,
8-
pytestCheckHook,
9-
pytest-cov-stub,
9+
10+
# dependencies
1011
babel,
1112
commonmark,
1213
htmltools,
1314
importlib-metadata,
1415
importlib-resources,
15-
ipykernel,
16-
ipython,
1716
numpy,
1817
typing-extensions,
18+
19+
# tests
20+
ipykernel,
21+
ipython,
1922
pandas,
2023
polars,
2124
pyarrow,
25+
pytestCheckHook,
26+
pytest-cov-stub,
2227
requests,
2328
syrupy,
2429
}:
@@ -28,8 +33,6 @@ buildPythonPackage rec {
2833
version = "0.11.0";
2934
pyproject = true;
3035

31-
disabled = pythonOlder "3.9";
32-
3336
src = fetchFromGitHub {
3437
owner = "posit-dev";
3538
repo = "great-tables";
@@ -76,6 +79,8 @@ buildPythonPackage rec {
7679
"test_save_non_png"
7780
];
7881

82+
__darwinAllowLocalNetworking = true;
83+
7984
meta = {
8085
description = "Library for rendering and formatting dataframes";
8186
homepage = "https://github.com/posit-dev/great-tables";

0 commit comments

Comments
 (0)