17 buildPythonPackage rec {
18 pname = "ipytablewidgets";
22 disabled = pythonOlder "3.7";
25 inherit pname version;
26 hash = "sha256-CGkb//mLUmkyv+hmVJX5+04JGCfw+TtfBxMTXW0bhsw=";
29 # Opened https://github.com/progressivis/ipytablewidgets/issues/3 to ask if
30 # jupyterlab can be updated upstream. (From commits, it looks like it was
31 # set to this version on purpose.) In the meantime, the build still works.
34 substituteInPlace pyproject.toml \
35 --replace 'jupyterlab>=3.0.0,<3.7' 'jupyterlab>=3.0.0'
52 nativeCheckInputs = [ pytestCheckHook ];
54 pythonImportsCheck = [ "ipytablewidgets" ];
57 description = "Traitlets and widgets to efficiently data tables (e.g. Pandas DataFrame) using the jupyter notebook";
58 homepage = "https://github.com/progressivis/ipytablewidgets";
59 license = licenses.bsd3;
60 maintainers = with maintainers; [ natsukium ];