depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab-widgets/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

30 lines
672 B
Nix

{ lib, buildPythonPackage, fetchPypi
, jupyter-packaging
}:
buildPythonPackage rec {
pname = "jupyterlab-widgets";
version = "3.0.5";
src = fetchPypi {
pname = "jupyterlab_widgets";
inherit version;
hash = "sha256-7q7N6vbAOvyWDdriAc7YjVl5tMqcOJG8uPZjGvcF9e8=";
};
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 SuperSandro2000 ];
};
}