nixpkgs/pkgs/development/python-modules/ftfy/default.nix

45 lines
990 B
Nix
Raw Normal View History

2017-05-14 22:26:02 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, html5lib
, wcwidth
, nose
, python
2017-09-06 16:15:46 +00:00
, isPy3k
2017-05-14 22:26:02 +00:00
}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "ftfy";
# latest is 5.1.1, buy spaCy requires 4.4.3
2017-12-30 11:23:06 +00:00
version = "5.2.0";
2017-05-14 22:26:02 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 11:23:06 +00:00
sha256 = "b9f84a1437f68ad0bb964fd9da9f6b88d090113ec9e78f290f6d6d0221468e38";
2017-05-14 22:26:02 +00:00
};
propagatedBuildInputs = [ html5lib wcwidth];
2017-09-06 16:15:46 +00:00
checkInputs = [
2017-05-14 22:26:02 +00:00
nose
];
checkPhase = ''
2017-09-06 16:15:46 +00:00
nosetests -v tests
2017-05-14 22:26:02 +00:00
'';
2017-09-06 16:15:46 +00:00
# Several tests fail with
# FileNotFoundError: [Errno 2] No such file or directory: 'ftfy'
doCheck = false;
# "this version of ftfy is no longer written for Python 2"
disabled = !isPy3k;
2017-05-14 22:26:02 +00:00
meta = with stdenv.lib; {
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 ];
2017-05-14 22:26:02 +00:00
};
}