My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/holoviews/default.nix

48 lines
788 B

{ buildPythonPackage
, fetchPypi
, lib
, param
, numpy
, pyviz-comms
, ipython
, notebook
, pandas
, matplotlib
, bokeh
, scipy
, panel
}:
buildPythonPackage rec {
pname = "holoviews";
version = "1.13.5";
src = fetchPypi {
inherit pname version;
sha256 = "3f8a00ce1cc67a388a3a949441accd7e7e9ca9960ba16b49ee96a50305105a01";
};
propagatedBuildInputs = [
param
numpy
pyviz-comms
ipython
notebook
pandas
matplotlib
bokeh
scipy
panel
];
# tests not fully included with pypi release
doCheck = false;
meta = with lib; {
description = "Python data analysis and visualization seamless and simple";
homepage = "http://www.holoviews.org/";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}