pythonPackages.panel: init at 0.4.0

This commit is contained in:
Chris Ostrouchov 2019-02-24 10:24:42 -05:00
parent 0bf877b23a
commit 5785c2c5ba
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 52 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };