Merge pull request #106731 from danieldk/spacy-2.3.5

python3Packages.spacy: 2.3.4 -> 2.3.5
This commit is contained in:
Daniël de Kok 2020-12-16 08:21:55 +01:00 committed by GitHub
commit 9631eb8d0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,27 +22,27 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "spacy"; pname = "spacy";
version = "2.3.4"; version = "2.3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "a5c8805759114aac3a1db1b20f42af1124da5315be903ccb4c472cc8452393fb"; sha256 = "315278ab60094643baecd866017c7d4cbd966efd2d517ad0e6c888edf7fa5aef";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
blis blis
catalogue catalogue
cymem cymem
jsonschema jsonschema
murmurhash murmurhash
numpy numpy
plac plac
preshed preshed
requests requests
setuptools setuptools
srsly srsly
thinc thinc
wasabi wasabi
] ++ lib.optional (pythonOlder "3.4") pathlib; ] ++ lib.optional (pythonOlder "3.4") pathlib;
checkInputs = [ checkInputs = [
@ -56,16 +56,16 @@ buildPythonPackage rec {
postPatch = '' postPatch = ''
substituteInPlace setup.cfg \ substituteInPlace setup.cfg \
--replace "blis>=0.4.0,<0.5.0" "blis>=0.4.0,<1.0" \ --replace "blis>=0.4.0,<0.8.0" "blis>=0.4.0,<1.0" \
--replace "catalogue>=0.0.7,<1.1.0" "catalogue>=0.0.7,<3.0" \ --replace "catalogue>=0.0.7,<1.1.0" "catalogue>=0.0.7,<3.0" \
--replace "plac>=0.9.6,<1.2.0" "plac>=0.9.6,<2.0" \ --replace "plac>=0.9.6,<1.2.0" "plac>=0.9.6,<2.0" \
--replace "srsly>=1.0.2,<1.1.0" "srsly>=1.0.2,<3.0" \ --replace "srsly>=1.0.2,<1.1.0" "srsly>=1.0.2,<3.0" \
--replace "thinc==7.4.1" "thinc>=7.4.1,<8" --replace "thinc>=7.4.1,<7.5.0" "thinc>=7.4.1,<8"
''; '';
pythonImportsCheck = [ "spacy" ]; pythonImportsCheck = [ "spacy" ];
passthru.tests = callPackage ./annotation-test {}; passthru.tests.annotation = callPackage ./annotation-test { };
meta = with lib; { meta = with lib; {
description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython"; description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";