bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
43 lines
850 B
Nix
43 lines
850 B
Nix
{
|
|
lib,
|
|
bokeh,
|
|
buildPythonPackage,
|
|
colorcet,
|
|
fetchPypi,
|
|
holoviews,
|
|
pandas,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hvplot";
|
|
version = "0.9.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-moyekkkTmqo97l8c6g+TzzY3TReemGcF/N3CuSxHB5M=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
bokeh
|
|
colorcet
|
|
holoviews
|
|
pandas
|
|
];
|
|
|
|
# Many tests require a network connection
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "hvplot.pandas" ];
|
|
|
|
meta = with lib; {
|
|
description = "High-level plotting API for the PyData ecosystem built on HoloViews";
|
|
homepage = "https://hvplot.pyviz.org";
|
|
changelog = "https://github.com/holoviz/hvplot/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|