diff options
| author | R. Ryantm <ryantm-bot@ryantm.com> | 2024-10-13 10:12:49 +0000 |
|---|---|---|
| committer | natsukium <tomoya.otabi@gmail.com> | 2024-10-14 16:39:55 +0900 |
| commit | cc68b91e1173b90641c8b12eeda6fa515993ce2c (patch) | |
| tree | 11b263f76c5eb6eddc411b05a7d048a147684c90 | |
| parent | Merge master into staging-next (diff) | |
| download | nixpkgs-cc68b91e1173b90641c8b12eeda6fa515993ce2c.tar.gz | |
python312Packages.ipytablewidgets: 0.3.1 -> 0.3.2
| -rw-r--r-- | pkgs/development/python-modules/ipytablewidgets/default.nix | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/ipytablewidgets/default.nix b/pkgs/development/python-modules/ipytablewidgets/default.nix index 0f54bb310567..e536861e1061 100644 --- a/pkgs/development/python-modules/ipytablewidgets/default.nix +++ b/pkgs/development/python-modules/ipytablewidgets/default.nix @@ -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 ]; |
