1{ lib
2, buildPythonPackage
3, fetchPypi
4, notebook
5, ipywidgets
6}:
7
8buildPythonPackage rec {
9 pname = "widgetsnbextension";
10 version = "3.5.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "079f87d87270bce047512400efd70238820751a11d2d8cb137a5a5bdbaf255c7";
15 };
16
17 propagatedBuildInputs = [ notebook ];
18
19 # No tests in archive
20 doCheck = false;
21
22 meta = {
23 description = "IPython HTML widgets for Jupyter";
24 homepage = "http://ipython.org/";
25 license = ipywidgets.meta.license; # Build from same repo
26 maintainers = with lib.maintainers; [ fridh ];
27 };
28}