Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.streamz: 0.5.1 -> 0.5.2

(cherry picked from commit 8d306d599a66503c02405b557af2c0bb6541ab85)

authored by

Jonathan Ringer and committed by
Mario Rodas
fb2ea4fa e3930fd4

+14 -5
+14 -5
pkgs/development/python-modules/streamz/default.nix
··· 5 5 , toolz 6 6 , zict 7 7 , six 8 - , pytest 8 + , pytest_4 9 9 , networkx 10 10 , distributed 11 11 , confluent-kafka 12 12 , graphviz 13 + , requests 13 14 }: 14 15 15 16 buildPythonPackage rec { 16 17 pname = "streamz"; 17 - version = "0.5.1"; 18 + version = "0.5.2"; 18 19 19 20 src = fetchPypi { 20 21 inherit pname version; 21 - sha256 = "80c9ded1d6e68d3b78339deb6e9baf93a633d84b4a8875221e337ac06890103f"; 22 + sha256 = "127rpdjgkcyjifmkqbhmqfbzlgi32n54rybrdxja610qr906y40c"; 22 23 }; 23 24 24 - checkInputs = [ pytest networkx distributed confluent-kafka graphviz ]; 25 25 propagatedBuildInputs = [ 26 26 tornado 27 27 toolz ··· 29 29 six 30 30 ]; 31 31 32 + checkInputs = [ 33 + confluent-kafka 34 + distributed 35 + graphviz 36 + networkx 37 + pytest_4 38 + requests 39 + ]; 40 + 32 41 # Disable test_tcp_async because fails on sandbox build 33 42 checkPhase = '' 34 43 pytest --deselect=streamz/tests/test_sources.py::test_tcp_async \ ··· 37 46 38 47 meta = with lib; { 39 48 description = "Pipelines to manage continuous streams of data"; 40 - homepage = https://github.com/mrocklin/streamz/; 49 + homepage = "https://github.com/mrocklin/streamz"; 41 50 license = licenses.bsd3; 42 51 maintainers = [ maintainers.costrouc ]; 43 52 };