diff --git a/pkgs/development/python-modules/great-tables/default.nix b/pkgs/development/python-modules/great-tables/default.nix index c3dabbc8233e..6283a429f8b3 100644 --- a/pkgs/development/python-modules/great-tables/default.nix +++ b/pkgs/development/python-modules/great-tables/default.nix @@ -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";