pythonPackages.vega: cleanup, add pythonImportsCheck

This commit is contained in:
Sandro Jäckel 2021-02-15 23:18:39 +01:00
parent 978347863f
commit eaa4f67649
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage , fetchPypi, pythonOlder { lib, buildPythonPackage , fetchPypi, pythonOlder
, pytest, jupyter_core, pandas, ipywidgets, jupyter, altair }: , jupyter_core, pandas, ipywidgets, jupyter }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "vega"; pname = "vega";
@ -11,12 +11,11 @@ buildPythonPackage rec {
sha256 = "f343ceb11add58d24cd320d69e410b111a56c98c9069ebb4ef89c608c4c1950d"; sha256 = "f343ceb11add58d24cd320d69e410b111a56c98c9069ebb4ef89c608c4c1950d";
}; };
buildInputs = [ pytest ];
propagatedBuildInputs = [ jupyter jupyter_core pandas ipywidgets ]; propagatedBuildInputs = [ jupyter jupyter_core pandas ipywidgets ];
# currently, recommonmark is broken on python3 # currently, recommonmark is broken on python3
doCheck = false; doCheck = false;
checkInputs = [ altair ]; pythonImportsCheck = [ "vega" ];
meta = with lib; { meta = with lib; {
description = "An IPython/Jupyter widget for Vega and Vega-Lite"; description = "An IPython/Jupyter widget for Vega and Vega-Lite";