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

44 lines
846 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";
version = "0.9.7";
# Version 10 attempts to download models from the web during build-time
# https://github.com/holoviz/panel/issues/1819
2019-02-24 15:24:42 +00:00
src = fetchPypi {
inherit pname version;
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 ];
};
}