summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-08-08 17:26:40 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-08-11 10:13:37 -0700
commitc0607b398b2ccb89baf59a53c4d7d4b617461cbf (patch)
treeaf1284e70940fa3b94551699c62d42839440125f
parent862dee7c9c369760fa1113f4793def8eba5306f9 (diff)
python310Packages.streamz: 0.6.3 -> 0.6.4
-rw-r--r--pkgs/development/python-modules/streamz/default.nix22
1 files changed, 8 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/streamz/default.nix b/pkgs/development/python-modules/streamz/default.nix
index 0b2fb134a921..a4fe702c8c5d 100644
--- a/pkgs/development/python-modules/streamz/default.nix
+++ b/pkgs/development/python-modules/streamz/default.nix
@@ -20,28 +20,16 @@
buildPythonPackage rec {
pname = "streamz";
- version = "0.6.3";
+ version = "0.6.4";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-0wZ1ldLFRAIL9R+gLfwsFbL+gvdORAkYWNjnDmeafm8=";
+ hash = "sha256-VXfWkEwuxInBQVQJV3IQXgGVRkiBmYfUZCBMbjyWNPM=";
};
- patches = [
- # remove with next bump
- (fetchpatch {
- name = "fix-tests-against-distributed-2021.10.0.patch";
- url = "https://github.com/python-streamz/streamz/commit/5bd3bc4d305ff40c740bc2550c8491be9162778a.patch";
- sha256 = "1xzxcbf7yninkyizrwm3ahqk6ij2fmh0454iqjx2n7mmzx3sazx7";
- includes = [
- "streamz/tests/test_dask.py"
- ];
- })
- ];
-
propagatedBuildInputs = [
networkx
six
@@ -65,6 +53,12 @@ buildPythonPackage rec {
];
disabledTests = [
+ # Error with distutils version: fixture 'cleanup' not found
+ "test_separate_thread_without_time"
+ "test_await_syntax"
+ "test_partition_then_scatter_sync"
+ "test_sync"
+ "test_sync_2"
# Test fail in the sandbox
"test_tcp_async"
"test_tcp"