3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/bokeh/default.nix

67 lines
1.1 KiB
Nix
Raw Normal View History

2019-09-01 07:32:43 +01:00
{ buildPythonPackage
, fetchPypi
2019-09-01 07:32:43 +01:00
, futures
, isPy3k
, isPyPy
, jinja2
2019-09-01 07:32:43 +01:00
, lib
, mock
, numpy
2019-09-01 07:32:43 +01:00
, nodejs
, packaging
, pillow
2019-09-01 07:32:43 +01:00
, pytest
, python
, python-dateutil
, pyyaml
, selenium
2019-09-01 07:32:43 +01:00
, six
, substituteAll
, tornado
}:
buildPythonPackage rec {
pname = "bokeh";
2019-12-19 19:31:06 +00:00
version = "1.4.0";
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:06 +00:00
sha256 = "c60d38a41a777b8147ee4134e6142cea8026b5eebf48149e370c44689869dce7";
};
2019-09-01 07:32:43 +01:00
patches = [
(substituteAll {
src = ./hardcode-nodejs-npmjs-paths.patch;
node_bin = "${nodejs}/bin/node";
npm_bin = "${nodejs}/bin/npm";
})
];
2019-09-01 07:32:43 +01:00
disabled = isPyPy;
checkInputs = [ mock pytest pillow selenium ];
propagatedBuildInputs = [
pillow
jinja2
2019-09-01 07:32:43 +01:00
python-dateutil
six
pyyaml
tornado
2019-09-01 07:32:43 +01:00
numpy
packaging
]
2019-09-01 07:32:43 +01:00
++ lib.optionals ( !isPy3k ) [ futures ];
checkPhase = ''
${python.interpreter} -m unittest discover -s bokeh/tests
'';
meta = {
description = "Statistical and novel interactive HTML plots for Python";
2018-06-27 21:12:57 +01:00
homepage = https://github.com/bokeh/bokeh;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ orivej ];
};
2017-09-23 16:12:44 +01:00
}