about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2023-02-17 14:47:21 -0500
committerGitHub <noreply@github.com>2023-02-17 14:47:21 -0500
commit9d344df50a6130917791e851ecb75ba5c6a5112d (patch)
tree92d61951f8033d331eb2792a414431f83be1749e
parent505feabc489e0ddb074f444ac0b1fc792c8da4a8 (diff)
parent0d193e46160ef485b3692e9008a210c8957605c6 (diff)
downloadnixlib-9d344df50a6130917791e851ecb75ba5c6a5112d.tar
nixlib-9d344df50a6130917791e851ecb75ba5c6a5112d.tar.gz
nixlib-9d344df50a6130917791e851ecb75ba5c6a5112d.tar.bz2
nixlib-9d344df50a6130917791e851ecb75ba5c6a5112d.tar.lz
nixlib-9d344df50a6130917791e851ecb75ba5c6a5112d.tar.xz
nixlib-9d344df50a6130917791e851ecb75ba5c6a5112d.tar.zst
nixlib-9d344df50a6130917791e851ecb75ba5c6a5112d.zip
Merge pull request #216727 from bcdarwin/unbreak-wandb
python310Packages.wandb: unbreak
-rw-r--r--pkgs/development/python-modules/wandb/default.nix2
1 files changed, 1 insertions, 1 deletions
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" ];