python3Packages.hvplot: remove unused inputs

conduit-nginx
Fabian Affolter 2021-10-22 11:42:55 +02:00
parent 76638545c8
commit f78568d24a
1 changed files with 5 additions and 18 deletions

View File

@ -1,18 +1,10 @@
{ lib { lib
, buildPythonPackage
, fetchPypi
, bokeh , bokeh
, buildPythonPackage
, colorcet
, fetchPypi
, holoviews , holoviews
, pandas , pandas
, pytest
, parameterized
, nbsmoke
, flake8
, coveralls
, xarray
, networkx
, streamz
, colorcet
, pythonImportsCheckHook , pythonImportsCheckHook
}: }:
@ -29,7 +21,6 @@ buildPythonPackage rec {
pythonImportsCheckHook pythonImportsCheckHook
]; ];
checkInputs = [ pytest parameterized nbsmoke flake8 coveralls xarray networkx streamz ];
propagatedBuildInputs = [ propagatedBuildInputs = [
bokeh bokeh
colorcet colorcet
@ -37,11 +28,7 @@ buildPythonPackage rec {
pandas pandas
]; ];
preCheck = '' # Many tests require a network connection
export HOME=$(mktemp -d)
'';
# many tests require a network connection
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [
@ -52,6 +39,6 @@ buildPythonPackage rec {
description = "A high-level plotting API for the PyData ecosystem built on HoloViews"; description = "A high-level plotting API for the PyData ecosystem built on HoloViews";
homepage = "https://hvplot.pyviz.org"; homepage = "https://hvplot.pyviz.org";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };
} }