depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab-widgets/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

38 lines
862 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jupyter-packaging,
}:
buildPythonPackage rec {
pname = "jupyterlab-widgets";
version = "3.0.10";
pyproject = true;
src = fetchPypi {
pname = "jupyterlab_widgets";
inherit version;
hash = "sha256-BPKsBJdnJ+T50PqRzcLxq4YPll5QTCnb1qZciCydBMA=";
};
# 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 ];
};
}