depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab-widgets/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

30 lines
656 B
Nix

{ lib, buildPythonPackage, fetchPypi
, jupyter-packaging
}:
buildPythonPackage rec {
pname = "jupyterlab-widgets";
version = "3.0.9";
src = fetchPypi {
pname = "jupyterlab_widgets";
inherit version;
hash = "sha256-YAWk6XTHvu6EBg/fujQaMhhJUEbeiuPsZIiOX+Gf20w=";
};
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 ];
};
}