From 0d193e46160ef485b3692e9008a210c8957605c6 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Thu, 16 Feb 2023 19:23:44 -0500 Subject: [PATCH] python310Packages.wandb: unbreak Remove stale hard-coded `python310Packages.bokeh` version. --- pkgs/development/python-modules/wandb/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix index f6d1769f526b..e1139ecf1b14 100644 --- a/pkgs/development/python-modules/wandb/default.nix +++ b/pkgs/development/python-modules/wandb/default.nix @@ -104,7 +104,7 @@ buildPythonPackage rec { # Set BOKEH_CDN_VERSION to stop bokeh throwing an exception in tests preCheck = '' export HOME=$(mktemp -d) - export BOKEH_CDN_VERSION=3.0.3 + export BOKEH_CDN_VERSION=${bokeh.version} ''; pythonRelaxDeps = [ "protobuf" ];