python312Packages.pyviz-comms: 2.2.1 -> 3.0.3

Diff: https://github.com/holoviz/pyviz_comms/compare/v2.2.1...v3.0.3
This commit is contained in:
natsukium
2025-01-01 14:30:24 +09:00
parent 4a4790f0ff
commit eb8171e4d1
@@ -1,21 +1,37 @@
{
buildPythonPackage,
fetchPypi,
hatch-jupyter-builder,
hatch-nodejs-version,
hatchling,
lib,
param,
panel,
}:
buildPythonPackage rec {
pname = "pyviz_comms";
version = "2.2.1";
pname = "pyviz-comms";
version = "3.0.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-omFFuM5D0tk0s8aCbXe5E84QXFKOsuSUyJCz41Jd3zM=";
pname = "pyviz_comms";
inherit version;
hash = "sha256-/eSgF8IhPs7mOppnQUMchF5CpcexWI5Ke6LkNwxYNyg=";
};
propagatedBuildInputs = [ param ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"jupyterlab>=4.0.0,<5",' ""
'';
build-system = [
hatch-jupyter-builder
hatch-nodejs-version
hatchling
];
dependencies = [ param ];
# there are not tests with the package
doCheck = false;
@@ -26,10 +42,10 @@ buildPythonPackage rec {
inherit panel;
};
meta = with lib; {
description = "Launch jobs, organize the output, and dissect the results";
meta = {
description = "Bidirectional communication for the HoloViz ecosystem";
homepage = "https://pyviz.org/";
license = licenses.bsd3;
license = lib.licenses.bsd3;
maintainers = [ ];
};
}