depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab-widgets/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

30 lines
675 B
Nix

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