Merge pull request #69681 from jonringer/bump-streamz

pythonPackages.streamz: 0.5.1 -> 0.5.2
This commit is contained in:
Mario Rodas 2019-09-29 08:01:23 -05:00 committed by GitHub
commit 20f4f2e0f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,23 +5,23 @@
, toolz , toolz
, zict , zict
, six , six
, pytest , pytest_4
, networkx , networkx
, distributed , distributed
, confluent-kafka , confluent-kafka
, graphviz , graphviz
, requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "streamz"; pname = "streamz";
version = "0.5.1"; version = "0.5.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "80c9ded1d6e68d3b78339deb6e9baf93a633d84b4a8875221e337ac06890103f"; sha256 = "127rpdjgkcyjifmkqbhmqfbzlgi32n54rybrdxja610qr906y40c";
}; };
checkInputs = [ pytest networkx distributed confluent-kafka graphviz ];
propagatedBuildInputs = [ propagatedBuildInputs = [
tornado tornado
toolz toolz
@ -29,6 +29,15 @@ buildPythonPackage rec {
six six
]; ];
checkInputs = [
confluent-kafka
distributed
graphviz
networkx
pytest_4
requests
];
# Disable test_tcp_async because fails on sandbox build # Disable test_tcp_async because fails on sandbox build
checkPhase = '' checkPhase = ''
pytest --deselect=streamz/tests/test_sources.py::test_tcp_async \ pytest --deselect=streamz/tests/test_sources.py::test_tcp_async \
@ -37,7 +46,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Pipelines to manage continuous streams of data"; description = "Pipelines to manage continuous streams of data";
homepage = https://github.com/mrocklin/streamz/; homepage = "https://github.com/mrocklin/streamz";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = [ maintainers.costrouc ];
}; };