mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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
|
||||
, 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";
|
||||
|
Loading…
Reference in New Issue
Block a user