summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-09-13 09:18:57 +0200
committerGitHub <noreply@github.com>2017-09-13 09:18:57 +0200
commitd6dec0a9e6857e6e56222ded048d4b73bec3f174 (patch)
treefd92245b4e5cdb6d484c8d9aae6bbe8f296fa7ab /pkgs/development
parent50d36558a4862b200d8eb8f93ea8eeb7d5b3399f (diff)
parent566f5e9e8d9110619f5a14b8d9c47fcb4f37a069 (diff)
downloadnixpkgs-d6dec0a9e6857e6e56222ded048d4b73bec3f174.tar
nixpkgs-d6dec0a9e6857e6e56222ded048d4b73bec3f174.tar.gz
nixpkgs-d6dec0a9e6857e6e56222ded048d4b73bec3f174.tar.bz2
nixpkgs-d6dec0a9e6857e6e56222ded048d4b73bec3f174.tar.lz
nixpkgs-d6dec0a9e6857e6e56222ded048d4b73bec3f174.tar.xz
nixpkgs-d6dec0a9e6857e6e56222ded048d4b73bec3f174.tar.zst
nixpkgs-d6dec0a9e6857e6e56222ded048d4b73bec3f174.zip
Merge pull request #29291 from rvl/fix-python-spacy
Fix build of python3Packages.spacy
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/ftfy/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/ftfy/default.nix b/pkgs/development/python-modules/ftfy/default.nix
index f5d25626bcf..aced6675495 100644
--- a/pkgs/development/python-modules/ftfy/default.nix
+++ b/pkgs/development/python-modules/ftfy/default.nix
@@ -10,11 +10,12 @@
 buildPythonPackage rec {
   name = "${pname}-${version}";
   pname = "ftfy";
-  version = "5.1.1";
+  # latest is 5.1.1, buy spaCy requires 4.4.3
+  version = "4.4.3";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "67a29a2fad5f72aec2d8a0a7084e4f499ed040455133ee96b1c458609fc29e78";        
+    sha256 = "152xdb56rhs1q4r0ck1n557sbphw7zq18r75a7kkd159ckdnc01w";
   };
 
   propagatedBuildInputs = [ html5lib wcwidth];
@@ -38,6 +39,6 @@ buildPythonPackage rec {
     description = "Given Unicode text, make its representation consistent and possibly less broken.";
     homepage = https://github.com/LuminosoInsight/python-ftfy/tree/master/tests;
     license = licenses.mit;
-    maintainers = with maintainers; [ sdll ];    
+    maintainers = with maintainers; [ sdll ];
     };
 }