fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
52 lines
896 B
Nix
52 lines
896 B
Nix
{
|
|
lib,
|
|
bokeh,
|
|
buildPythonPackage,
|
|
colorcet,
|
|
fetchPypi,
|
|
ipython,
|
|
matplotlib,
|
|
notebook,
|
|
numpy,
|
|
pandas,
|
|
panel,
|
|
param,
|
|
pythonOlder,
|
|
pyviz-comms,
|
|
scipy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "holoviews";
|
|
version = "1.18.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-V44w6J1ydU+XqD6+CBmP7I6HzH5JslufMew5P5OcpQA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
colorcet
|
|
numpy
|
|
pandas
|
|
panel
|
|
param
|
|
pyviz-comms
|
|
];
|
|
|
|
# tests not fully included with pypi release
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "holoviews" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python data analysis and visualization seamless and simple";
|
|
mainProgram = "holoviews";
|
|
homepage = "https://www.holoviews.org/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|