Merge pull request #310780 from GaetanLepage/streamz

python311Packages.streamz: fix by adding missing test dependencies
This commit is contained in:
Pol Dellaiera 2024-05-11 11:16:29 +02:00 committed by GitHub
commit 62f659318d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,18 @@
{ stdenv
, lib
{ lib
, stdenv
, buildPythonPackage
, confluent-kafka
, distributed
, fetchpatch
, pythonOlder
, fetchPypi
, setuptools
, confluent-kafka
, dask
, dask-expr
, distributed
, flaky
, graphviz
, networkx
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, requests
, six
, toolz
@ -21,7 +23,7 @@
buildPythonPackage rec {
pname = "streamz";
version = "0.6.4";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@ -30,7 +32,11 @@ buildPythonPackage rec {
hash = "sha256-VXfWkEwuxInBQVQJV3IQXgGVRkiBmYfUZCBMbjyWNPM=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
networkx
six
toolz
@ -40,6 +46,8 @@ buildPythonPackage rec {
nativeCheckInputs = [
confluent-kafka
dask
dask-expr
distributed
flaky
graphviz