pythonPackages.bokeh: 1.3.4 -> 1.4.0
This commit is contained in:
parent
92da996e62
commit
310afc9e93
@ -1,7 +1,7 @@
|
|||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, futures
|
, futures
|
||||||
, isPy3k
|
, isPy27
|
||||||
, isPyPy
|
, isPyPy
|
||||||
, jinja2
|
, jinja2
|
||||||
, lib
|
, lib
|
||||||
@ -26,7 +26,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "c60d38a41a777b8147ee4134e6142cea8026b5eebf48149e370c44689869dce7";
|
sha256 = "1rywd6c6hi0c6yg18j5zxssjd07a5hafcd21xr3q2yvp3aj3h3f6";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -39,7 +39,12 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
|
|
||||||
checkInputs = [ mock pytest pillow selenium ];
|
checkInputs = [
|
||||||
|
mock
|
||||||
|
pytest
|
||||||
|
pillow
|
||||||
|
selenium
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pillow
|
pillow
|
||||||
@ -51,7 +56,9 @@ buildPythonPackage rec {
|
|||||||
numpy
|
numpy
|
||||||
packaging
|
packaging
|
||||||
]
|
]
|
||||||
++ lib.optionals ( !isPy3k ) [ futures ];
|
++ lib.optionals ( isPy27 ) [
|
||||||
|
futures
|
||||||
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
${python.interpreter} -m unittest discover -s bokeh/tests
|
${python.interpreter} -m unittest discover -s bokeh/tests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user