ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / jupyterlab-widgets / default.nix
blob7077d39cb742d3f895c75adc1eae398f7d054452
1 { lib, buildPythonPackage, fetchPypi
2 , jupyter-packaging
3 }:
5 buildPythonPackage rec {
6   pname = "jupyterlab-widgets";
7   version = "3.0.3";
9   src = fetchPypi {
10     pname = "jupyterlab_widgets";
11     inherit version;
12     sha256 = "sha256-x2cYE5m0yotke+/i2ROxJg9Rv52O+behRjLUwae1Nr0=";
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 SuperSandro2000 ];
29   };