pythonPackages.vega: build fix
vega 2.6 also depends on ipywidgets
This commit is contained in:
parent
8f30944b89
commit
9588e9c89c
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, buildPythonPackage , fetchPypi
|
{ stdenv, buildPythonPackage , fetchPypi
|
||||||
, pytest, jupyter_core, pandas }:
|
, pytest, jupyter_core, pandas, ipywidgets }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "vega";
|
pname = "vega";
|
||||||
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pytest ];
|
buildInputs = [ pytest ];
|
||||||
propagatedBuildInputs = [ jupyter_core pandas ];
|
propagatedBuildInputs = [ jupyter_core pandas ipywidgets ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An IPython/Jupyter widget for Vega and Vega-Lite";
|
description = "An IPython/Jupyter widget for Vega and Vega-Lite";
|
||||||
|
Loading…
Reference in New Issue
Block a user