pythonPackages.panel: init at 0.4.0
This commit is contained in:
parent
0bf877b23a
commit
5785c2c5ba
50
pkgs/development/python-modules/panel/default.nix
Normal file
50
pkgs/development/python-modules/panel/default.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, bokeh
|
||||
, param
|
||||
, pyviz-comms
|
||||
, markdown
|
||||
, pyct
|
||||
, testpath
|
||||
, pytest
|
||||
, scipy
|
||||
, plotly
|
||||
, altair
|
||||
, vega_datasets
|
||||
, hvplot
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "panel";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "21fc6729909dba4ba8c9a84b7fadd293322cc2594d15ac73b0f66a5ceffd1f98";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "testpath<0.4" "testpath"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bokeh
|
||||
param
|
||||
pyviz-comms
|
||||
markdown
|
||||
pyct
|
||||
testpath
|
||||
];
|
||||
|
||||
# infinite recursion in test dependencies (hvplot)
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A high level dashboarding library for python visualization libraries";
|
||||
homepage = http://pyviz.org;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -3462,6 +3462,8 @@ in {
|
||||
|
||||
pandas = callPackage ../development/python-modules/pandas { };
|
||||
|
||||
panel = callPackage ../development/python-modules/panel { };
|
||||
|
||||
xlrd = callPackage ../development/python-modules/xlrd { };
|
||||
|
||||
bottleneck = callPackage ../development/python-modules/bottleneck { };
|
||||
|
Loading…
Reference in New Issue
Block a user