pythonPackages.holoviews: init at 1.11.2
This commit is contained in:
parent
1a2eae5610
commit
7242b9e02c
47
pkgs/development/python-modules/holoviews/default.nix
Normal file
47
pkgs/development/python-modules/holoviews/default.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, lib
|
||||
, param
|
||||
, numpy
|
||||
, pyviz-comms
|
||||
, ipython
|
||||
, notebook
|
||||
, pandas
|
||||
, matplotlib
|
||||
, bokeh
|
||||
, scipy
|
||||
, panel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "holoviews";
|
||||
version = "1.11.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0902wzzz73ikkdy0jfhg1lx97y1gk7v1nr3d3jqqdfzaa7bmhqwj";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -438,6 +438,8 @@ in {
|
||||
|
||||
hdmedians = callPackage ../development/python-modules/hdmedians { };
|
||||
|
||||
holoviews = callPackage ../development/python-modules/holoviews { };
|
||||
|
||||
hoomd-blue = toPythonModule (callPackage ../development/python-modules/hoomd-blue {
|
||||
inherit python;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user