{ lib , buildPythonPackage , fetchPypi , python , nose , pytest , mock , ipython , ipykernel , traitlets , notebook , widgetsnbextension }: buildPythonPackage rec { pname = "ipywidgets"; version = "7.3.0"; src = fetchPypi { inherit pname version; sha256 = "3ce93db970a94f06f38121da70757cdbcce884ecd14f79a4dd9bc49a47e0f33b"; }; # Tests are not distributed # doCheck = false; buildInputs = [ nose pytest mock ]; propagatedBuildInputs = [ ipython ipykernel traitlets notebook widgetsnbextension ]; checkPhase = '' ${python.interpreter} -m unittest discover ''; meta = { description = "IPython HTML widgets for Jupyter"; homepage = http://ipython.org/; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; }