1{ lib, buildPythonPackage, fetchPypi 2, jupyter-packaging 3}: 4 5buildPythonPackage rec { 6 pname = "jupyterlab-widgets"; 7 version = "1.0.0"; 8 9 src = fetchPypi { 10 pname = "jupyterlab_widgets"; 11 inherit version; 12 sha256 = "0y7vhhas3qndiypcpcfnhrj9n92v2w4hdc86nn620s9h9nl2j6jw"; 13 }; 14 15 nativeBuildInputs = [ 16 jupyter-packaging 17 ]; 18 19 # has no tests 20 doCheck = false; 21 22 pythonImportsCheck = [ "jupyterlab_widgets" ]; 23 24 meta = with lib; { 25 description = "Jupyter Widgets JupyterLab Extension"; 26 homepage = "https://github.com/jupyter-widgets/ipywidgets"; 27 license = licenses.bsd3; 28 maintainers = with maintainers; [ jonringer SuperSandro2000 ]; 29 }; 30}