nixpkgs/pkgs/development/python-modules/panel/default.nix

42 lines
723 B
Nix
Raw Normal View History

2019-02-24 15:24:42 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, bokeh
, param
, pyviz-comms
, markdown
, pyct
, testpath
, tqdm
2019-02-24 15:24:42 +00:00
}:
buildPythonPackage rec {
pname = "panel";
2020-06-30 08:37:13 +01:00
version = "0.9.7";
2019-02-24 15:24:42 +00:00
src = fetchPypi {
inherit pname version;
2020-06-30 08:37:13 +01:00
sha256 = "2e86d82bdd5e7664bf49558eedad62b664d5403ec9e422e5ddfcf69e3bd77318";
2019-02-24 15:24:42 +00:00
};
propagatedBuildInputs = [
bokeh
param
pyviz-comms
markdown
pyct
testpath
tqdm
2019-02-24 15:24:42 +00:00
];
# infinite recursion in test dependencies (hvplot)
doCheck = false;
meta = with lib; {
description = "A high level dashboarding library for python visualization libraries";
homepage = "https://pyviz.org";
2019-02-24 15:24:42 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}