ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / widgetsnbextension / default.nix
blob7b077d14c58e493ef3411a269c647b0fcf2f926a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jupyter-packaging
5 , notebook
6 , ipywidgets
7 }:
9 buildPythonPackage rec {
10   pname = "widgetsnbextension";
11   version = "4.0.3";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-NIJIZMBisLMDCteCENta5qOWDfth1bJ1YtZjF3TeAoY=";
17   };
19   nativeBuildInputs = [
20     jupyter-packaging
21   ];
23   # No tests in archive
24   doCheck = false;
26   meta = {
27     description = "IPython HTML widgets for Jupyter";
28     homepage = "https://github.com/jupyter-widgets/ipywidgets/tree/master/python/widgetsnbextension";
29     license = ipywidgets.meta.license; # Build from same repo
30     maintainers = with lib.maintainers; [ fridh ];
31   };