summary refs log tree commit diff
path: root/pkgs/development/python-modules/ftfy/default.nix
blob: b1ba77ab868cfb4b3ef69fcea8fc5e74e708af30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ stdenv
, buildPythonPackage
, fetchPypi
, html5lib
, wcwidth
, nose
, python
, isPy3k
}:
buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "ftfy";
  # latest is 5.1.1, buy spaCy requires 4.4.3
  version = "5.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "67a29a2fad5f72aec2d8a0a7084e4f499ed040455133ee96b1c458609fc29e78";
  };

  propagatedBuildInputs = [ html5lib wcwidth];

  checkInputs = [
    nose
  ];

  checkPhase = ''
    nosetests -v tests
  '';

  # 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;

  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 ];
    };
}