3
0
Fork 0
forked from mirrors/nixpkgs

vega: init at 0.4.4

This commit is contained in:
Tom Hunger 2016-10-31 12:36:47 +00:00
parent 4df3bb7e08
commit 5142165d80

View file

@ -364,6 +364,30 @@ in {
};
};
vega = buildPythonPackage rec {
name = "vega-0.4.4";
src = pkgs.fetchurl {
url = "mirror://pypi/v/vega/${name}.tar.gz";
sha256 = "08k92afnk0bivm07h1l5nh26xl2rfp7qn03aq17q1hr3fs5r6cdm";
};
propagatedBuildInputs = with self; [ jupyter_core pandas ];
meta = {
description = " An IPython/Jupyter widget for Vega and Vega-Lite.";
longDescription = ''
To use this you have to enter a nix-shell with vega. Then run:
jupyter nbextension install --user --py vega
jupyter nbextension enable --user vega
'';
homepage = https://github.com/vega/ipyvega;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ teh ];
};
};
acme_0_5_0 = buildPythonPackage rec {
version = "0.5.0";
name = "acme-${version}";