summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFarkas, Arnold <arnold.farkas@worldquant.com>2020-01-20 09:28:17 -0500
committerJon <jonringer@users.noreply.github.com>2020-01-22 00:53:34 -0800
commit9588e9c89c566e3dec2aaf13915c90425e6e6b87 (patch)
treeae39efae721984bb1f895d81df49dbaeaa022582 /pkgs/development/python-modules
parent8f30944b899b3dbaa601b61c3065eff285ba8780 (diff)
downloadnixpkgs-9588e9c89c566e3dec2aaf13915c90425e6e6b87.tar
nixpkgs-9588e9c89c566e3dec2aaf13915c90425e6e6b87.tar.gz
nixpkgs-9588e9c89c566e3dec2aaf13915c90425e6e6b87.tar.bz2
nixpkgs-9588e9c89c566e3dec2aaf13915c90425e6e6b87.tar.lz
nixpkgs-9588e9c89c566e3dec2aaf13915c90425e6e6b87.tar.xz
nixpkgs-9588e9c89c566e3dec2aaf13915c90425e6e6b87.tar.zst
nixpkgs-9588e9c89c566e3dec2aaf13915c90425e6e6b87.zip
pythonPackages.vega: build fix
vega 2.6 also depends on ipywidgets
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/vega/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/vega/default.nix b/pkgs/development/python-modules/vega/default.nix
index 2bfeccccc59..73485329ef7 100644
--- a/pkgs/development/python-modules/vega/default.nix
+++ b/pkgs/development/python-modules/vega/default.nix
@@ -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";