depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab-widgets/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

38 lines
862 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jupyter-packaging,
}:
buildPythonPackage rec {
pname = "jupyterlab-widgets";
version = "3.0.11";
pyproject = true;
src = fetchPypi {
pname = "jupyterlab_widgets";
inherit version;
hash = "sha256-3VrGeVk8lprynJvtBUwk8mhCuqUTUhFHNnVrwDXe7ic=";
};
# jupyterlab is required to build from source but we use the pre-build package
postPatch = ''
substituteInPlace pyproject.toml \
--replace '"jupyterlab~=4.0"' ""
'';
nativeBuildInputs = [ jupyter-packaging ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "jupyterlab_widgets" ];
meta = with lib; {
description = "Jupyter Widgets JupyterLab Extension";
homepage = "https://github.com/jupyter-widgets/ipywidgets";
license = licenses.bsd3;
maintainers = with maintainers; [ jonringer ];
};
}