c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
30 lines
672 B
Nix
30 lines
672 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, jupyter-packaging
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyterlab-widgets";
|
|
version = "3.0.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "jupyterlab_widgets";
|
|
inherit version;
|
|
hash = "sha256-w6UO1b9Sigx6hpCWUDr1RwL4bdodtGmu4cktwMAbQ8o=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|