17 buildPythonPackage rec {
22 disabled = pythonOlder "3.8";
25 inherit pname version;
26 hash = "sha256-8lrmhCvwczqBpiQRCkPjmiYsJPHEFnZab/Azkh+i7ls=";
33 pythonRelaxDeps = [ "pandas" ];
35 propagatedBuildInputs = [
42 optional-dependencies = {
43 widget = [ ipywidgets ];
44 jupyterlab = [ jupyterlab ];
53 # these tests are broken with jupyter-notebook >= 7
54 "vega/tests/test_entrypoint.py"
57 pythonImportsCheck = [ "vega" ];
60 description = "IPython/Jupyter widget for Vega and Vega-Lite";
62 To use this you have to enter a nix-shell with vega. Then run:
64 jupyter nbextension install --user --py vega
65 jupyter nbextension enable --user vega
67 homepage = "https://github.com/vega/ipyvega";
68 license = licenses.bsd3;
69 maintainers = with maintainers; [ teh ];