1be0098156
GitOrigin-RevId: 667e5581d16745bcda791300ae7e2d73f49fff25
52 lines
862 B
Nix
52 lines
862 B
Nix
{ lib
|
|
, bokeh
|
|
, buildPythonPackage
|
|
, colorcet
|
|
, fetchPypi
|
|
, ipython
|
|
, matplotlib
|
|
, notebook
|
|
, numpy
|
|
, pandas
|
|
, panel
|
|
, param
|
|
, pythonOlder
|
|
, pyviz-comms
|
|
, scipy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "holoviews";
|
|
version = "1.15.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-3sJBf2VACLHXtkWzHs9iHIvvkBaU5MTnJy7/0Yr6Nts=";
|
|
};
|
|
|
|
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";
|
|
homepage = "http://www.holoviews.org/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|