python.ftfy: 5.3.0 -> 4.4.3
V5 only supports python3. Since at the moment the only packages that use ftfy are spacy and textacy which both support python2 and 3, I propose to roll back to v4 until another package requires v5, at that point we can make a duplicate package.
This commit is contained in:
parent
458ba30fa9
commit
8187d93da2
@ -7,18 +7,23 @@
|
|||||||
, python
|
, python
|
||||||
, isPy3k
|
, isPy3k
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
name = "${pname}-${version}";
|
|
||||||
pname = "ftfy";
|
pname = "ftfy";
|
||||||
# latest is 5.1.1, buy spaCy requires 4.4.3
|
|
||||||
version = "5.3.0";
|
version = "4.4.3";
|
||||||
|
# ftfy v5 only supports python3. Since at the moment the only
|
||||||
|
# packages that use ftfy are spacy and textacy which both support
|
||||||
|
# python 2 and 3, they have pinned ftfy to the v4 branch.
|
||||||
|
# I propose to stick to v4 until another package requires v5.
|
||||||
|
# At that point we can make a ftfy_v4 package.
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0ba702d5138f9b35df32b55920c9466208608108f1f3d5de1a68c17e3d68cb7f";
|
sha256 = "152xdb56rhs1q4r0ck1n557sbphw7zq18r75a7kkd159ckdnc01w";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ html5lib wcwidth];
|
propagatedBuildInputs = [ html5lib wcwidth ];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
nose
|
nose
|
||||||
@ -32,13 +37,10 @@ buildPythonPackage rec {
|
|||||||
# FileNotFoundError: [Errno 2] No such file or directory: 'ftfy'
|
# FileNotFoundError: [Errno 2] No such file or directory: 'ftfy'
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
# "this version of ftfy is no longer written for Python 2"
|
|
||||||
disabled = !isPy3k;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Given Unicode text, make its representation consistent and possibly less broken.";
|
description = "Given Unicode text, make its representation consistent and possibly less broken.";
|
||||||
homepage = https://github.com/LuminosoInsight/python-ftfy/tree/master/tests;
|
homepage = https://github.com/LuminosoInsight/python-ftfy/tree/master/tests;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ sdll ];
|
maintainers = with maintainers; [ sdll aborsu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user