2017-07-15 07:05:39 +01:00
|
|
|
{ stdenv, buildPythonPackage , fetchPypi
|
|
|
|
, pytest, jupyter_core, pandas }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "vega";
|
2018-08-25 06:51:30 +01:00
|
|
|
version = "1.4.0";
|
2017-07-15 07:05:39 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-25 06:51:30 +01:00
|
|
|
sha256 = "cf9701dac0111c09ea009ab06cbb81f27b1d9c23ebf58ebdf08b6994a37f13ac";
|
2017-07-15 07:05:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ jupyter_core pandas ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ teh ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|