python312Packages.pyviz-comms: 2.2.1 -> 3.0.3 (#369866)

authored by OTABI Tomoya and committed by GitHub 7673e4ff 298dd3f6

+24 -8
+24 -8
pkgs/development/python-modules/pyviz-comms/default.nix
··· 1 { 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 param, 6 panel, 7 }: 8 9 buildPythonPackage rec { 10 - pname = "pyviz_comms"; 11 - version = "2.2.1"; 12 13 src = fetchPypi { 14 - inherit pname version; 15 - hash = "sha256-omFFuM5D0tk0s8aCbXe5E84QXFKOsuSUyJCz41Jd3zM="; 16 }; 17 18 - propagatedBuildInputs = [ param ]; 19 20 # there are not tests with the package 21 doCheck = false; ··· 26 inherit panel; 27 }; 28 29 - meta = with lib; { 30 - description = "Launch jobs, organize the output, and dissect the results"; 31 homepage = "https://pyviz.org/"; 32 - license = licenses.bsd3; 33 maintainers = [ ]; 34 }; 35 }
··· 1 { 2 buildPythonPackage, 3 fetchPypi, 4 + hatch-jupyter-builder, 5 + hatch-nodejs-version, 6 + hatchling, 7 lib, 8 param, 9 panel, 10 }: 11 12 buildPythonPackage rec { 13 + pname = "pyviz-comms"; 14 + version = "3.0.3"; 15 + pyproject = true; 16 17 src = fetchPypi { 18 + pname = "pyviz_comms"; 19 + inherit version; 20 + hash = "sha256-/eSgF8IhPs7mOppnQUMchF5CpcexWI5Ke6LkNwxYNyg="; 21 }; 22 23 + postPatch = '' 24 + substituteInPlace pyproject.toml \ 25 + --replace-fail '"jupyterlab>=4.0.0,<5",' "" 26 + ''; 27 + 28 + build-system = [ 29 + hatch-jupyter-builder 30 + hatch-nodejs-version 31 + hatchling 32 + ]; 33 + 34 + dependencies = [ param ]; 35 36 # there are not tests with the package 37 doCheck = false; ··· 42 inherit panel; 43 }; 44 45 + meta = { 46 + description = "Bidirectional communication for the HoloViz ecosystem"; 47 homepage = "https://pyviz.org/"; 48 + license = lib.licenses.bsd3; 49 maintainers = [ ]; 50 }; 51 }