at 23.05-pre 30 lines 674 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, jupyter-packaging 3}: 4 5buildPythonPackage rec { 6 pname = "jupyterlab-widgets"; 7 version = "3.0.3"; 8 9 src = fetchPypi { 10 pname = "jupyterlab_widgets"; 11 inherit version; 12 sha256 = "sha256-x2cYE5m0yotke+/i2ROxJg9Rv52O+behRjLUwae1Nr0="; 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}