From 9eaec03930c0e784246e5bd91907687208efb4c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Sat, 12 Dec 2020 11:35:40 +0100 Subject: [PATCH 1/3] python3Packages.spacy: 2.3.4 -> 2.3.5 Changelog: https://github.com/explosion/spacy/releases/tag/v2.3.5 --- pkgs/development/python-modules/spacy/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix index 9b4f7cc9271..69caa9313ec 100644 --- a/pkgs/development/python-modules/spacy/default.nix +++ b/pkgs/development/python-modules/spacy/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pname = "spacy"; - version = "2.3.4"; + version = "2.3.5"; src = fetchPypi { inherit pname version; - sha256 = "a5c8805759114aac3a1db1b20f42af1124da5315be903ccb4c472cc8452393fb"; + sha256 = "315278ab60094643baecd866017c7d4cbd966efd2d517ad0e6c888edf7fa5aef"; }; propagatedBuildInputs = [ @@ -56,11 +56,11 @@ buildPythonPackage rec { postPatch = '' 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 "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 "thinc==7.4.1" "thinc>=7.4.1,<8" + --replace "thinc>=7.4.1,<7.5.0" "thinc>=7.4.1,<8" ''; pythonImportsCheck = [ "spacy" ]; From 9edd8887d871b57c5eeed0d846a8f0544463fd8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Sat, 12 Dec 2020 11:37:25 +0100 Subject: [PATCH 2/3] python3Packages.spacy: nixpkgs-fmt --- .../python-modules/spacy/default.nix | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix index 69caa9313ec..f8594b8856b 100644 --- a/pkgs/development/python-modules/spacy/default.nix +++ b/pkgs/development/python-modules/spacy/default.nix @@ -30,19 +30,19 @@ buildPythonPackage rec { }; propagatedBuildInputs = [ - blis - catalogue - cymem - jsonschema - murmurhash - numpy - plac - preshed - requests - setuptools - srsly - thinc - wasabi + blis + catalogue + cymem + jsonschema + murmurhash + numpy + plac + preshed + requests + setuptools + srsly + thinc + wasabi ] ++ lib.optional (pythonOlder "3.4") pathlib; checkInputs = [ @@ -65,7 +65,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "spacy" ]; - passthru.tests = callPackage ./annotation-test {}; + passthru.tests = callPackage ./annotation-test { }; meta = with lib; { description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython"; From 57f858d61e650b2b02163b30d57262a167f2ffbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Sat, 12 Dec 2020 11:38:39 +0100 Subject: [PATCH 3/3] python3Packages.spacy: passthru.tests should be an attrset --- pkgs/development/python-modules/spacy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix index f8594b8856b..e13127abeb3 100644 --- a/pkgs/development/python-modules/spacy/default.nix +++ b/pkgs/development/python-modules/spacy/default.nix @@ -65,7 +65,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "spacy" ]; - passthru.tests = callPackage ./annotation-test { }; + passthru.tests.annotation = callPackage ./annotation-test { }; meta = with lib; { description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";