mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pythonPackages.textacy: fix build
This commit is contained in:
parent
e7c0604fb1
commit
c259cbe19f
1 changed files with 5 additions and 0 deletions
|
@ -52,6 +52,11 @@ buildPythonPackage rec {
|
||||||
unidecode
|
unidecode
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "'ftfy>=4.2.0,<5.0.0'," "'ftfy>=5.0.0',"
|
||||||
|
'';
|
||||||
|
|
||||||
doCheck = false; # tests want to download data files
|
doCheck = false; # tests want to download data files
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue