python3Packages.jupyterlab-widgets: add missing build component

This commit is contained in:
Fabian Affolter
2026-08-25 17:01:53 +02:00
parent 14979ee144
commit 6930f049f7

View File

@@ -2,18 +2,19 @@
lib,
buildPythonPackage,
fetchPypi,
hatchling,
hatch-jupyter-builder,
hatchling,
jupyter-builder,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "jupyterlab-widgets";
version = "3.0.17";
pyproject = true;
src = fetchPypi {
pname = "jupyterlab_widgets";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-bmH+IcqKZgORgKXMUqQz4HJ50v7nnIvpY+ANVRk/F6g=";
};
@@ -24,8 +25,9 @@ buildPythonPackage rec {
'';
build-system = [
hatchling
hatch-jupyter-builder
hatchling
jupyter-builder
];
# has no tests
@@ -36,7 +38,8 @@ buildPythonPackage rec {
meta = {
description = "Jupyter Widgets JupyterLab Extension";
homepage = "https://github.com/jupyter-widgets/ipywidgets";
changelog = "https://github.com/jupyter-widgets/ipywidgets/releases/tag/${finalAttrs.version}";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
})