Unverified Commit 62f65931 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #310780 from GaetanLepage/streamz

python311Packages.streamz: fix by adding missing test dependencies
parents eeeb66ce d891413d
Loading
Loading
Loading
Loading
+15 −7
Original line number Diff line number Diff line
{ stdenv
, lib
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools
, confluent-kafka
, dask
, dask-expr
, distributed
, fetchpatch
, fetchPypi
, 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