about summary refs log tree commit diff
path: root/pkgs/development/python-modules/streamz
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-05-11 15:49:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-05-11 17:09:44 -0500
commitb7a6a7c8f55f3e9054cf4a20659f3379a2644b28 (patch)
tree30ee0182fedbbaf1da1a24d9a8062e7161ffdc4e /pkgs/development/python-modules/streamz
parent855a6f28876bd2b899316b0fc670a30fa13ed630 (diff)
pythonPackages.streamz: 0.5.0 -> 0.5.1
Diffstat (limited to 'pkgs/development/python-modules/streamz')
-rw-r--r--pkgs/development/python-modules/streamz/default.nix13
1 files changed, 4 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/streamz/default.nix b/pkgs/development/python-modules/streamz/default.nix
index f779862dc6109..87de719025dc7 100644
--- a/pkgs/development/python-modules/streamz/default.nix
+++ b/pkgs/development/python-modules/streamz/default.nix
@@ -14,19 +14,13 @@
 
 buildPythonPackage rec {
   pname = "streamz";
-  version = "0.5.0";
+  version = "0.5.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "cfdd42aa62df299f550768de5002ec83112136a34b44441db9d633b2df802fb4";
+    sha256 = "80c9ded1d6e68d3b78339deb6e9baf93a633d84b4a8875221e337ac06890103f";
   };
 
-  # Pytest 4.x fails to collect streamz-dataframe tests.
-  # Removing them in v0.5.0. TODO: re-enable in a future release
-  postPatch = ''
-    rm -rf streamz/dataframe/tests/*.py
-  '';
-
   checkInputs = [ pytest networkx distributed confluent-kafka graphviz ];
   propagatedBuildInputs = [
     tornado
@@ -35,8 +29,9 @@ buildPythonPackage rec {
     six
   ];
 
+  # Disable test_tcp_async because fails on sandbox build
   checkPhase = ''
-    pytest
+    pytest --deselect=streamz/tests/test_sources.py::test_tcp_async
   '';
 
   meta = with lib; {