python312Packages.bokeh: 3.6.2 -> 3.6.3 (#380740)

authored by Weijia Wang and committed by GitHub 79225ba8 2bb9e59d

+3 -14
+3 -14
pkgs/development/python-modules/bokeh/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - fetchFromGitHub, 6 5 pythonOlder, 7 6 replaceVars, 8 7 colorama, ··· 46 45 buildPythonPackage rec { 47 46 pname = "bokeh"; 48 47 # update together with panel which is not straightforward 49 - version = "3.6.2"; 48 + version = "3.6.3"; 50 49 pyproject = true; 51 50 52 51 disabled = pythonOlder "3.9"; 53 52 54 53 src = fetchPypi { 55 54 inherit pname version; 56 - hash = "sha256-LzBD2eyz1dwujA6/itVXJ2FxiNTlNPPnIIs2NX41I5Y="; 57 - }; 58 - 59 - src_test = fetchFromGitHub { 60 - owner = "bokeh"; 61 - repo = "bokeh"; 62 - rev = "refs/tags/${version}"; 63 - hash = "sha256-MAv+6bwc5f+jZasRDsYTJ/ir0i1pYCuwqPMumsYWvws="; 55 + hash = "sha256-m4HWqepi51oEoanZ+TGUIBaJC+7Jq10SmipEMs9ZXAo="; 64 56 }; 65 57 66 58 patches = [ ··· 122 114 ]; 123 115 124 116 doCheck = false; # need more work 125 - pytestFlagsArray = "tests/test_defaults.py"; 117 + 126 118 pythonImportsCheck = [ "bokeh" ]; 127 - preCheck = '' 128 - cp -rv ''${src_test}/tests/* ./tests/ 129 - ''; 130 119 131 120 meta = { 132 121 description = "Statistical and novel interactive HTML plots for Python";