Merge pull request #201298 from mweinelt/fix-datasets

This commit is contained in:
Martin Weinelt
2022-11-16 00:29:49 +01:00
committed by GitHub
@@ -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"