nixpkgs/pkgs/development/python-modules/streamz/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

84 lines
1.4 KiB
Nix

{ stdenv
, lib
, buildPythonPackage
, confluent-kafka
, distributed
, fetchpatch
, fetchPypi
, flaky
, graphviz
, networkx
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, requests
, six
, toolz
, tornado
, zict
}:
buildPythonPackage rec {
pname = "streamz";
version = "0.6.4";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-VXfWkEwuxInBQVQJV3IQXgGVRkiBmYfUZCBMbjyWNPM=";
};
propagatedBuildInputs = [
networkx
six
toolz
tornado
zict
];
nativeCheckInputs = [
confluent-kafka
distributed
flaky
graphviz
pytest-asyncio
pytestCheckHook
requests
];
pythonImportsCheck = [
"streamz"
];
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"
"test_partition_timeout"
# Tests are flaky
"test_from_iterable"
"test_buffer"
];
disabledTestPaths = [
# Disable kafka tests
"streamz/tests/test_kafka.py"
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Pipelines to manage continuous streams of data";
homepage = "https://github.com/python-streamz/streamz";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];
};
}