python310Packages.panel: 0.14.2 -> 0.14.3

https://github.com/holoviz/panel/releases/tag/v0.14.3
This commit is contained in:
Martin Weinelt 2023-02-09 13:34:46 +01:00
parent 9c35e69c84
commit dfadd4438f
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,20 +1,22 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
, bleach
, bokeh
, param
, pyviz-comms
, markdown
, pyct
, testpath
, requests
, setuptools
, tqdm
, nodejs
, typing-extensions
}:
buildPythonPackage rec {
pname = "panel";
version = "0.14.2";
version = "0.14.3";
format = "wheel";
@ -23,31 +25,42 @@ buildPythonPackage rec {
# tries to fetch even more artifacts
src = fetchPypi {
inherit pname version format;
hash = "sha256-cDjrim7esGduL8IHxPpoqHB43uA78R9UMIrhNktqUdU=";
hash = "sha256-XOu17oydXwfyowYUmCKF7/RC0RQ0Uf1Ixmn+VTa85Lo=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"bokeh"
];
propagatedBuildInputs = [
bleach
bokeh
param
pyviz-comms
markdown
param
pyct
testpath
pyviz-comms
requests
setuptools
tqdm
typing-extensions
];
pythonImportsCheck = [
"panel"
];
# infinite recursion in test dependencies (hvplot)
doCheck = false;
passthru = {
inherit nodejs; # For convenience
};
meta = with lib; {
description = "A high level dashboarding library for python visualization libraries";
homepage = "https://pyviz.org";
homepage = "https://github.com/holoviz/panel";
changelog = "https://github.com/holoviz/panel/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
maintainers = with maintainers; [ costrouc ];
};
}