python3Packages.tokenizers: 0.10.0 -> 0.10.1

Changelog:
https://github.com/huggingface/tokenizers/releases/tag/python-v0.10.1
This commit is contained in:
Daniël de Kok 2021-03-06 08:54:17 +01:00
parent 6aa26c8623
commit da45ee7202
1 changed files with 3 additions and 3 deletions

View File

@ -49,19 +49,19 @@ let
}; };
in buildPythonPackage rec { in buildPythonPackage rec {
pname = "tokenizers"; pname = "tokenizers";
version = "0.10.0"; version = "0.10.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "huggingface"; owner = "huggingface";
repo = pname; repo = pname;
rev = "python-v${version}"; rev = "python-v${version}";
hash = "sha256-rQ2hRV52naEf6PvRsWVCTN7B1oXAQGmnpJw4iIdhamw="; hash = "sha256-N/dKjQwHKmJnB76q8ISQ3cjuW0Z4GqGavnFFx/w9JRQ=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src sourceRoot; inherit src sourceRoot;
name = "${pname}-${version}"; name = "${pname}-${version}";
hash = "sha256-BoHIN/519Top1NUBjpB/oEMqi86Omt3zTQcXFWqrek0="; hash = "sha256-3ICSjtiRfLOj+PXu6mcuDoAtod5uXAcabYWTLxEgI18=";
}; };
sourceRoot = "source/bindings/python"; sourceRoot = "source/bindings/python";