pythonPackages.vega: build fix

vega 2.6 also depends on ipywidgets
This commit is contained in:
Farkas, Arnold 2020-01-20 09:28:17 -05:00 committed by Jon
parent 8f30944b89
commit 9588e9c89c

View File

@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage , fetchPypi
, pytest, jupyter_core, pandas }:
, pytest, jupyter_core, pandas, ipywidgets }:
buildPythonPackage rec {
pname = "vega";
@ -11,7 +11,7 @@ buildPythonPackage rec {
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ jupyter_core pandas ];
propagatedBuildInputs = [ jupyter_core pandas ipywidgets ];
meta = with stdenv.lib; {
description = "An IPython/Jupyter widget for Vega and Vega-Lite";