2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage , fetchPypi, pythonOlder
|
2021-02-15 22:18:39 +00:00
|
|
|
, jupyter_core, pandas, ipywidgets, jupyter }:
|
2017-07-15 07:05:39 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "vega";
|
2020-06-06 07:47:36 +01:00
|
|
|
version = "3.4.0";
|
2020-07-07 21:05:02 +01:00
|
|
|
disabled = pythonOlder "3.6";
|
2017-07-15 07:05:39 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:36 +01:00
|
|
|
sha256 = "f343ceb11add58d24cd320d69e410b111a56c98c9069ebb4ef89c608c4c1950d";
|
2017-07-15 07:05:39 +01:00
|
|
|
};
|
|
|
|
|
2020-08-07 18:52:50 +01:00
|
|
|
propagatedBuildInputs = [ jupyter jupyter_core pandas ipywidgets ];
|
|
|
|
|
|
|
|
# currently, recommonmark is broken on python3
|
|
|
|
doCheck = false;
|
2021-02-15 22:18:39 +00:00
|
|
|
pythonImportsCheck = [ "vega" ];
|
2017-07-15 07:05:39 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-15 07:05:39 +01:00
|
|
|
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
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/vega/ipyvega";
|
2017-07-15 07:05:39 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ teh ];
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2017-07-15 07:05:39 +01:00
|
|
|
};
|
|
|
|
}
|