about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorDaniƫl de Kok <me@danieldk.eu>2020-06-16 17:26:11 +0200
committerJon <jonringer@users.noreply.github.com>2020-06-17 12:04:42 -0700
commitce1ea86f1bc24521e5c59f081b8529600cd13422 (patch)
treedbc6c0ec13b9425c8cc9bab4d7950ea3e06a2ce5 /pkgs/development
parentfc9ddd85c48db80ada7d96efe0480a43a2637fe8 (diff)
downloadnixlib-ce1ea86f1bc24521e5c59f081b8529600cd13422.tar
nixlib-ce1ea86f1bc24521e5c59f081b8529600cd13422.tar.gz
nixlib-ce1ea86f1bc24521e5c59f081b8529600cd13422.tar.bz2
nixlib-ce1ea86f1bc24521e5c59f081b8529600cd13422.tar.lz
nixlib-ce1ea86f1bc24521e5c59f081b8529600cd13422.tar.xz
nixlib-ce1ea86f1bc24521e5c59f081b8529600cd13422.tar.zst
nixlib-ce1ea86f1bc24521e5c59f081b8529600cd13422.zip
python3Packages.spacy: 2.2.4 -> 2.3.0
Changelog:

https://github.com/explosion/spaCy/releases/tag/v2.3.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/spacy/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix
index 6a54cc1ec715..f0a143ec30c7 100644
--- a/pkgs/development/python-modules/spacy/default.nix
+++ b/pkgs/development/python-modules/spacy/default.nix
@@ -21,11 +21,11 @@
 
 buildPythonPackage rec {
   pname = "spacy";
-  version = "2.2.4";
+  version = "2.3.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1fgm1zlw8mjhmk64skxs79ymhcningml13y9c9fy7rj1b1yadwzh";
+    sha256 = "0nri437dyapiq5gx8lbmjdfvqw2cnw3di13kp44rzr17bm5yh2jv";
   };
 
   propagatedBuildInputs = [
@@ -54,7 +54,7 @@ buildPythonPackage rec {
   # '';
 
   postPatch = ''
-    substituteInPlace setup.cfg --replace "thinc==7.4.0" "thinc>=7.4.0,<8"
+    substituteInPlace setup.cfg --replace "thinc==7.4.1" "thinc>=7.4.1,<8"
   '';
 
   meta = with lib; {
@@ -62,5 +62,5 @@ buildPythonPackage rec {
     homepage = "https://github.com/explosion/spaCy";
     license = licenses.mit;
     maintainers = with maintainers; [ danieldk sdll ];
-    };
+  };
 }