about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bokeh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bokeh/default.nix')
-rw-r--r--pkgs/development/python-modules/bokeh/default.nix93
1 files changed, 46 insertions, 47 deletions
diff --git a/pkgs/development/python-modules/bokeh/default.nix b/pkgs/development/python-modules/bokeh/default.nix
index 63fa524f9fa30..faffe2d1749e6 100644
--- a/pkgs/development/python-modules/bokeh/default.nix
+++ b/pkgs/development/python-modules/bokeh/default.nix
@@ -1,61 +1,60 @@
-{ lib
-, stdenv
-, buildPythonPackage
-, fetchPypi
-, fetchFromGitHub
-, pythonOlder
-, substituteAll
-, colorama
-, contourpy
-, jinja2
-, mock
-, numpy
-, nodejs
-, packaging
-, pandas
-, pillow
-, tornado
-, pytestCheckHook
-, pyyaml
-, setuptools
-, setuptools-git-versioning
-, xyzservices
-, beautifulsoup4
-, channels
-, click
-, colorcet
-, coverage
-, firefox
-, geckodriver
-, isort
-, json5
-, nbconvert
-, networkx
-, psutil
-, pygments
-, pygraphviz
-, pytest
-, pytest-asyncio
-, pytest-xdist
-, pytest-timeout
-, requests
-, scipy
-, selenium
-, toml
-, typing-extensions
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  fetchFromGitHub,
+  pythonOlder,
+  substituteAll,
+  colorama,
+  contourpy,
+  jinja2,
+  numpy,
+  nodejs,
+  packaging,
+  pandas,
+  pillow,
+  tornado,
+  pytestCheckHook,
+  pyyaml,
+  setuptools,
+  setuptools-git-versioning,
+  xyzservices,
+  beautifulsoup4,
+  channels,
+  click,
+  colorcet,
+  coverage,
+  firefox,
+  geckodriver,
+  isort,
+  json5,
+  nbconvert,
+  networkx,
+  psutil,
+  pygments,
+  pygraphviz,
+  pytest,
+  pytest-asyncio,
+  pytest-xdist,
+  pytest-timeout,
+  requests,
+  scipy,
+  selenium,
+  toml,
+  typing-extensions,
 }:
 
 buildPythonPackage rec {
   pname = "bokeh";
   # update together with panel which is not straightforward
-  version = "3.3.4";
+  version = "3.4.1";
   format = "pyproject";
 
   disabled = pythonOlder "3.9";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-c7eYLcK43xW/Zgzd3I04JegpGVxDgBWl0Jgk8acCg2g=";
+    hash = "sha256-2CSWHkJlNnsHUM5YsH5WStC4PKZLM1UhzTQh6bnxDYk=";
   };
 
   src_test = fetchFromGitHub {