Unverified Commit 719ce922 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.spacy: 3.5.0 -> 3.5.1
parents 1a165401 fec3896c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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; [ ];
  };