Merge pull request #99150 from danieldk/transformers-3.3.1

python3Packages.transformers: 3.2.0 -> 3.3.1
This commit is contained in:
Lancelot SIX 2020-10-02 10:54:56 +01:00 committed by GitHub
commit 0c98435f70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,13 +17,13 @@
buildPythonPackage rec {
pname = "transformers";
version = "3.2.0";
version = "3.3.1";
src = fetchFromGitHub {
owner = "huggingface";
repo = pname;
rev = "v${version}";
sha256 = "0jj94153kgdyklra30xcszxv11hwzfigzy82fgvgzvbwlxv3a1j5";
sha256 = "1j9nzhl0zw5z9rnvzfih7v6bax353rxp05b3f0cvkii3b5dbkc2j";
};
propagatedBuildInputs = [
@ -52,9 +52,12 @@ buildPythonPackage rec {
preCheck = ''
export HOME="$TMPDIR"
# This test requires the nlp module, which we haven't
# packaged yet. However, nlp is optional for transformers
# itself
# This test requires the `datasets` module to download test
# data. However, since we cannot download in the Nix sandbox
# and `dataset` is an optional dependency for transformers
# itself, we will just remove the tests files that import
# `dataset`.
rm tests/test_retrieval_rag.py
rm tests/test_trainer.py
'';