Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jupyterlab-widgets / default.nix
blob4d668da9bde6bd6d218ed97037dfd82834f88587
1 { lib, buildPythonPackage, fetchPypi
2 , jupyter-packaging
3 }:
5 buildPythonPackage rec {
6   pname = "jupyterlab-widgets";
7   version = "3.0.9";
9   src = fetchPypi {
10     pname = "jupyterlab_widgets";
11     inherit version;
12     hash = "sha256-YAWk6XTHvu6EBg/fujQaMhhJUEbeiuPsZIiOX+Gf20w=";
13   };
15   nativeBuildInputs = [
16     jupyter-packaging
17   ];
19   # has no tests
20   doCheck = false;
22   pythonImportsCheck = [ "jupyterlab_widgets" ];
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 ];
29   };