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

46 lines
780 B

{ buildPythonPackage
, fetchPypi
, lib
, param
, numpy
, pyviz-comms
, ipython
, notebook
, pandas
, matplotlib
, bokeh
, scipy
, panel
, colorcet
}:
buildPythonPackage rec {
pname = "holoviews";
version = "1.14.9";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-mRI5CqJ58/vb5N81UYsS6Hy+zNeRXnIZEd7lVW22MGo=";
};
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 = [ maintainers.costrouc ];
};
}