mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
python3Packages.jupyterlab-widgets: add missing build component
This commit is contained in:
@@ -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 = [ ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user