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

Merge pull request #310935 from GaetanLepage/dask-yarn

python311Packages.dask-yarn: mark as unsupported on python 3.12
parents 7f495fa0 ff97cbbe
Loading
Loading
Loading
Loading
+19 −8
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, dask
, distributed
, pythonOlder
, fetchFromGitHub
, fetchpatch
, setuptools
, versioneer
, dask
, distributed
, grpcio
, pytestCheckHook
, pythonOlder
, skein
, pytestCheckHook
, stdenv
}:

buildPythonPackage rec {
  pname = "dask-yarn";
  version = "0.9";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -33,9 +35,18 @@ buildPythonPackage rec {
    })
  ];

  propagatedBuildInputs = [
    distributed
  postPatch = ''
    rm versioneer.py
  '';

  build-system = [
    setuptools
    versioneer
  ];

  dependencies = [
    dask
    distributed
    grpcio
    skein
  ];