Skip to content

Commit

Permalink
pythonPackages.streamz: 0.5.1 -> 0.5.2
Browse files Browse the repository at this point in the history
(cherry picked from commit 8d306d5)
  • Loading branch information
Jonathan Ringer authored and marsam committed Sep 29, 2019
1 parent e3930fd commit fb2ea4f
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions pkgs/development/python-modules/streamz/default.nix
Expand Up @@ -5,30 +5,39 @@
, toolz
, zict
, six
, pytest
, pytest_4
, networkx
, distributed
, confluent-kafka
, graphviz
, requests
}:

buildPythonPackage rec {
pname = "streamz";
version = "0.5.1";
version = "0.5.2";

src = fetchPypi {
inherit pname version;
sha256 = "80c9ded1d6e68d3b78339deb6e9baf93a633d84b4a8875221e337ac06890103f";
sha256 = "127rpdjgkcyjifmkqbhmqfbzlgi32n54rybrdxja610qr906y40c";
};

checkInputs = [ pytest networkx distributed confluent-kafka graphviz ];
propagatedBuildInputs = [
tornado
toolz
zict
six
];

checkInputs = [
confluent-kafka
distributed
graphviz
networkx
pytest_4
requests
];

# Disable test_tcp_async because fails on sandbox build
checkPhase = ''
pytest --deselect=streamz/tests/test_sources.py::test_tcp_async \
Expand All @@ -37,7 +46,7 @@ buildPythonPackage rec {

meta = with lib; {
description = "Pipelines to manage continuous streams of data";
homepage = https://github.com/mrocklin/streamz/;
homepage = "https://github.com/mrocklin/streamz";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
Expand Down

0 comments on commit fb2ea4f

Please sign in to comment.