fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
ipywidgets,
|
|
jupyter-packaging,
|
|
jupyterlab,
|
|
lz4,
|
|
numpy,
|
|
pandas,
|
|
setuptools,
|
|
traitlets,
|
|
traittypes,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipytablewidgets";
|
|
version = "0.3.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-14vIih+r/PHLxhgG29YtwuosSBLpewD2CluWpH2+pLc=";
|
|
};
|
|
|
|
# Opened https://github.com/progressivis/ipytablewidgets/issues/3 to ask if
|
|
# jupyterlab can be updated upstream. (From commits, it looks like it was
|
|
# set to this version on purpose.) In the meantime, the build still works.
|
|
#
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'jupyterlab>=3.0.0,<3.7' 'jupyterlab>=3.0.0'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
jupyter-packaging
|
|
jupyterlab
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
ipywidgets
|
|
lz4
|
|
numpy
|
|
pandas
|
|
traitlets
|
|
traittypes
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "ipytablewidgets" ];
|
|
|
|
meta = with lib; {
|
|
description = "Traitlets and widgets to efficiently data tables (e.g. Pandas DataFrame) using the jupyter notebook";
|
|
homepage = "https://github.com/progressivis/ipytablewidgets";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
};
|
|
}
|