82 lines
1.3 KiB
Nix
82 lines
1.3 KiB
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, isPyPy
|
||
|
, mock
|
||
|
, pytest
|
||
|
, flask
|
||
|
, jinja2
|
||
|
, markupsafe
|
||
|
, werkzeug
|
||
|
, itsdangerous
|
||
|
, dateutil
|
||
|
, requests
|
||
|
, six
|
||
|
, pygments
|
||
|
, pystache
|
||
|
, markdown
|
||
|
, pyyaml
|
||
|
, pyzmq
|
||
|
, tornado
|
||
|
, colorama
|
||
|
, isPy3k
|
||
|
, futures
|
||
|
, websocket_client
|
||
|
, numpy
|
||
|
, pandas
|
||
|
, greenlet
|
||
|
, python
|
||
|
, bkcharts
|
||
|
, pillow
|
||
|
, selenium
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "bokeh";
|
||
|
name = "${pname}${version}";
|
||
|
version = "0.12.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "2c42c95bf1a418c758dbff8446b4f5e5fc72ac10ea5da4e6b5010067396d0880";
|
||
|
};
|
||
|
|
||
|
disabled = isPyPy;
|
||
|
|
||
|
# Some test that uses tornado fails
|
||
|
# doCheck = false;
|
||
|
|
||
|
checkInputs = [ mock pytest pillow selenium ];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
flask
|
||
|
jinja2
|
||
|
markupsafe
|
||
|
werkzeug
|
||
|
itsdangerous
|
||
|
dateutil
|
||
|
requests
|
||
|
six
|
||
|
pygments
|
||
|
pystache
|
||
|
markdown
|
||
|
pyyaml
|
||
|
pyzmq
|
||
|
tornado
|
||
|
colorama
|
||
|
bkcharts
|
||
|
]
|
||
|
++ lib.optionals ( !isPy3k ) [ futures ]
|
||
|
++ lib.optionals ( !isPy3k && !isPyPy ) [ websocket_client ]
|
||
|
++ lib.optionals ( !isPyPy ) [ numpy pandas greenlet ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
${python.interpreter} -m unittest discover -s bokeh/tests
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Statistical and novel interactive HTML plots for Python";
|
||
|
homepage = "http://github.com/bokeh/bokeh";
|
||
|
license = lib.licenses.bsd3;
|
||
|
};
|
||
|
}
|