about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bokeh
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2019-12-31 09:50:13 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-12-31 18:12:37 +0100
commit310afc9e9304dcd28305c088b090415bac3fdb10 (patch)
tree602616cc8c39a2531b6f7f72cf4325bf710913fd /pkgs/development/python-modules/bokeh
parent92da996e62eb25b45473b5dc32dbe4d60ceb8f76 (diff)
downloadnixlib-310afc9e9304dcd28305c088b090415bac3fdb10.tar
nixlib-310afc9e9304dcd28305c088b090415bac3fdb10.tar.gz
nixlib-310afc9e9304dcd28305c088b090415bac3fdb10.tar.bz2
nixlib-310afc9e9304dcd28305c088b090415bac3fdb10.tar.lz
nixlib-310afc9e9304dcd28305c088b090415bac3fdb10.tar.xz
nixlib-310afc9e9304dcd28305c088b090415bac3fdb10.tar.zst
nixlib-310afc9e9304dcd28305c088b090415bac3fdb10.zip
pythonPackages.bokeh: 1.3.4 -> 1.4.0
Diffstat (limited to 'pkgs/development/python-modules/bokeh')
-rw-r--r--pkgs/development/python-modules/bokeh/default.nix15
1 files changed, 11 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/bokeh/default.nix b/pkgs/development/python-modules/bokeh/default.nix
index a352fb0fbb07..18f59b052887 100644
--- a/pkgs/development/python-modules/bokeh/default.nix
+++ b/pkgs/development/python-modules/bokeh/default.nix
@@ -1,7 +1,7 @@
 { buildPythonPackage
 , fetchPypi
 , futures
-, isPy3k
+, isPy27
 , isPyPy
 , jinja2
 , lib
@@ -26,7 +26,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "c60d38a41a777b8147ee4134e6142cea8026b5eebf48149e370c44689869dce7";
+    sha256 = "1rywd6c6hi0c6yg18j5zxssjd07a5hafcd21xr3q2yvp3aj3h3f6";
   };
 
   patches = [
@@ -39,7 +39,12 @@ buildPythonPackage rec {
 
   disabled = isPyPy;
 
-  checkInputs = [ mock pytest pillow selenium ];
+  checkInputs = [
+    mock
+    pytest
+    pillow
+    selenium
+  ];
 
   propagatedBuildInputs = [
     pillow
@@ -51,7 +56,9 @@ buildPythonPackage rec {
     numpy
     packaging
   ]
-  ++ lib.optionals ( !isPy3k ) [ futures ];
+  ++ lib.optionals ( isPy27 ) [
+    futures
+  ];
 
   checkPhase = ''
     ${python.interpreter} -m unittest discover -s bokeh/tests