summary refs log tree commit diff
path: root/pkgs/development/python-modules/cchardet/default.nix
blob: e1c27d9e4fb177f9e18ba69ed53f2714727a6d29 (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
45
46
{ lib
, buildPythonPackage
, fetchPypi
, python
, nose
}:

buildPythonPackage rec {
  pname = "cchardet";
  version = "2.1.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c428b6336545053c2589f6caf24ea32276c6664cb86db817e03a94c60afa0eaf";
  };

  pythonImportsCheck = [
    "cchardet"
  ];

  checkInputs = [ nose ];

  preCheck = ''
    cp -R src/tests $TMPDIR
    pushd $TMPDIR
  '';

  checkPhase = ''
    runHook preCheck

    nosetests

    runHook postCheck
  '';

  postCheck = ''
    popd
  '';

  meta = {
    description = "High-speed universal character encoding detector";
    homepage = "https://github.com/PyYoshi/cChardet";
    license = lib.licenses.mpl11;
    maintainers = with lib.maintainers; [ ivan ];
  };
}