about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ftfy/default.nix
blob: c0aea98778120f18b6fccd91acd626e63501945c (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
{ stdenv
, buildPythonPackage
, fetchPypi
, html5lib
, wcwidth
, nose
, python
}:
buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "ftfy";
  version = "4.4.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "152xdb56rhs1q4r0ck1n557sbphw7zq18r75a7kkd159ckdnc01w";        
  };

  propagatedBuildInputs = [ html5lib wcwidth];

  buildInputs = [
    nose
  ];

  checkPhase = ''
    nosetests -v
  '';

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