pythonPackages.bokeh: 1.3.4 -> 1.4.0

authored by

Chris Ostrouchov and committed by
Frederik Rietdijk
310afc9e 92da996e

+11 -4
+11 -4
pkgs/development/python-modules/bokeh/default.nix
··· 1 1 { buildPythonPackage 2 2 , fetchPypi 3 3 , futures 4 - , isPy3k 4 + , isPy27 5 5 , isPyPy 6 6 , jinja2 7 7 , lib ··· 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - sha256 = "c60d38a41a777b8147ee4134e6142cea8026b5eebf48149e370c44689869dce7"; 29 + sha256 = "1rywd6c6hi0c6yg18j5zxssjd07a5hafcd21xr3q2yvp3aj3h3f6"; 30 30 }; 31 31 32 32 patches = [ ··· 39 39 40 40 disabled = isPyPy; 41 41 42 - checkInputs = [ mock pytest pillow selenium ]; 42 + checkInputs = [ 43 + mock 44 + pytest 45 + pillow 46 + selenium 47 + ]; 43 48 44 49 propagatedBuildInputs = [ 45 50 pillow ··· 51 56 numpy 52 57 packaging 53 58 ] 54 - ++ lib.optionals ( !isPy3k ) [ futures ]; 59 + ++ lib.optionals ( isPy27 ) [ 60 + futures 61 + ]; 55 62 56 63 checkPhase = '' 57 64 ${python.interpreter} -m unittest discover -s bokeh/tests