Unverified Commit fb1fbcb0 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #201298 from mweinelt/fix-datasets

parents 8d902446 f8d028f2
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
, buildPythonPackage
, dill
, fetchFromGitHub
, fetchpatch
, fsspec
, huggingface-hub
, importlib-metadata
@@ -32,6 +33,14 @@ buildPythonPackage rec {
    hash = "sha256-5j8HT/DzHH8xssv97g/9kpSgtpaY6daWOGwjasD1psg=";
  };

  patches = [
    (fetchpatch {
      # Backport support for dill<3.7
      url = "https://github.com/huggingface/datasets/pull/5166.patch";
      hash = "sha256-QigpXKHi2B60M/iIWSqvBU9hW5vBu6IHGML22aCMevo=";
    })
  ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace "responses<0.19" "responses"