python310Packages.streamz: 0.6.3 -> 0.6.4
This commit is contained in:
parent
862dee7c9c
commit
c0607b398b
1 changed files with 8 additions and 14 deletions
|
@ -20,28 +20,16 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "streamz";
|
pname = "streamz";
|
||||||
version = "0.6.3";
|
version = "0.6.4";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
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 = [
|
propagatedBuildInputs = [
|
||||||
networkx
|
networkx
|
||||||
six
|
six
|
||||||
|
@ -65,6 +53,12 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTests = [
|
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 fail in the sandbox
|
||||||
"test_tcp_async"
|
"test_tcp_async"
|
||||||
"test_tcp"
|
"test_tcp"
|
||||||
|
|
Loading…
Reference in a new issue