Unverified Commit 79225ba8 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

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

parents 2bb9e59d 79a3ef01
Loading
Loading
Loading
Loading
+3 −14
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  pythonOlder,
  replaceVars,
  colorama,
@@ -46,21 +45,14 @@
buildPythonPackage rec {
  pname = "bokeh";
  # update together with panel which is not straightforward
  version = "3.6.2";
  version = "3.6.3";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-LzBD2eyz1dwujA6/itVXJ2FxiNTlNPPnIIs2NX41I5Y=";
  };

  src_test = fetchFromGitHub {
    owner = "bokeh";
    repo = "bokeh";
    rev = "refs/tags/${version}";
    hash = "sha256-MAv+6bwc5f+jZasRDsYTJ/ir0i1pYCuwqPMumsYWvws=";
    hash = "sha256-m4HWqepi51oEoanZ+TGUIBaJC+7Jq10SmipEMs9ZXAo=";
  };

  patches = [
@@ -122,11 +114,8 @@ buildPythonPackage rec {
  ];

  doCheck = false; # need more work
  pytestFlagsArray = "tests/test_defaults.py";

  pythonImportsCheck = [ "bokeh" ];
  preCheck = ''
    cp -rv ''${src_test}/tests/* ./tests/
  '';

  meta = {
    description = "Statistical and novel interactive HTML plots for Python";