python3Packages.ipympl: fix build

This commit is contained in:
Robert T. McGibbon 2021-05-08 19:21:52 -04:00 committed by Jonathan Ringer
parent b4640b3cfc
commit 83fe0340fd

View file

@ -1,4 +1,10 @@
{ lib, buildPythonPackage, fetchPypi, ipywidgets, matplotlib }:
{ lib
, buildPythonPackage
, fetchPypi
, ipywidgets
, matplotlib
, jupyter-packaging
}:
buildPythonPackage rec {
pname = "ipympl";
@ -9,7 +15,7 @@ buildPythonPackage rec {
sha256 = "f0f1f356d8cb9d4fb51bb86dbbf837c190145316cb72f66081872ebc4d6db0a1";
};
propagatedBuildInputs = [ ipywidgets matplotlib ];
propagatedBuildInputs = [ ipywidgets matplotlib jupyter-packaging ];
# There are no unit tests in repository
doCheck = false;