python3Packages.transformers: 4.0.0 -> 4.0.1

This release has some fixes:

https://github.com/huggingface/transformers/releases/tag/v4.0.1
This commit is contained in:
Daniël de Kok 2020-12-09 20:00:31 +01:00 committed by Jonathan Ringer
parent 08586b5fa9
commit dfe13f9152
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{ buildPythonPackage { buildPythonPackage
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, boto3 , isPy39
, cookiecutter , cookiecutter
, filelock , filelock
, regex , regex
@ -18,13 +18,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "transformers"; pname = "transformers";
version = "4.0.0"; version = "4.0.1";
disabled = isPy39;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "huggingface"; owner = "huggingface";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "17djq32pq8d6vqip7i9pda0ldigmzckbbcd278llmpxdriqd4llg"; sha256 = "1h53a3n6fdrx3ns1h1ip273hzd9pkm9m1qh41si75csb8mi1dq3d";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [