Skip to content

Commit

Permalink
python3Packages.vega: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ringer committed Aug 7, 2020
1 parent adcaeef commit 036d924
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/development/python-modules/vega/default.nix
@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage , fetchPypi, pythonOlder
, pytest, jupyter_core, pandas, ipywidgets }:
, pytest, jupyter_core, pandas, ipywidgets, jupyter, altair }:

buildPythonPackage rec {
pname = "vega";
Expand All @@ -12,7 +12,11 @@ buildPythonPackage rec {
};

buildInputs = [ pytest ];
propagatedBuildInputs = [ jupyter_core pandas ipywidgets ];
propagatedBuildInputs = [ jupyter jupyter_core pandas ipywidgets ];

# currently, recommonmark is broken on python3
doCheck = false;
checkInputs = [ altair ];

meta = with stdenv.lib; {
description = "An IPython/Jupyter widget for Vega and Vega-Lite";
Expand Down

0 comments on commit 036d924

Please sign in to comment.