python312Packages.ipytablewidgets: 0.3.1 -> 0.3.2 (#348230)

This commit is contained in:
OTABI Tomoya 2024-10-14 18:16:07 +09:00 committed by GitHub
commit a105b91a6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,20 +12,18 @@
pandas,
setuptools,
traitlets,
traittypes,
wheel,
}:
buildPythonPackage rec {
pname = "ipytablewidgets";
version = "0.3.1";
format = "pyproject";
version = "0.3.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-14vIih+r/PHLxhgG29YtwuosSBLpewD2CluWpH2+pLc=";
hash = "sha256-CGkb//mLUmkyv+hmVJX5+04JGCfw+TtfBxMTXW0bhsw=";
};
# Opened https://github.com/progressivis/ipytablewidgets/issues/3 to ask if
@ -37,20 +35,18 @@ buildPythonPackage rec {
--replace 'jupyterlab>=3.0.0,<3.7' 'jupyterlab>=3.0.0'
'';
nativeBuildInputs = [
build-system = [
jupyter-packaging
jupyterlab
setuptools
wheel
];
propagatedBuildInputs = [
dependencies = [
ipywidgets
lz4
numpy
pandas
traitlets
traittypes
];
nativeCheckInputs = [ pytestCheckHook ];