Merge pull request #221233 from r-ryantm/auto-update/python310Packages.spacy

python310Packages.spacy: 3.5.0 -> 3.5.1
This commit is contained in:
Fabian Affolter 2023-03-15 11:10:09 +01:00 committed by GitHub
commit 719ce922b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,14 +36,14 @@
buildPythonPackage rec {
pname = "spacy";
version = "3.5.0";
version = "3.5.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-/iAScBKZJ3iATZP3XOk3DViFcwcmOcODLOw49Uv35KU=";
hash = "sha256-gRrhRoxYuX/JqjEYfWtVMXeEJY8KR+v2nYHKtjnj+hU=";
};
propagatedBuildInputs = [
@ -107,6 +107,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Industrial-strength Natural Language Processing (NLP)";
homepage = "https://github.com/explosion/spaCy";
changelog = "https://github.com/explosion/spaCy/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};