summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/cmigemo/default.nix
blob: 3af749df30d962080fe0c9383c34c0642ae50689 (plain)
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
{
  stdenv,
  lib,
  buildPythonPackage,
  fetchPypi,
  six,
  cmigemo,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "cmigemo";
  version = "0.1.6";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "09j68kvcskav2cqb7pj12caksmj4wh2lhjp0csq00xpn0wqal4vk";
  };

  propagatedBuildInputs = [ six ];

  preConfigure = ''
    export LDFLAGS="-L${cmigemo}/lib"
    export CPPFLAGS="-I${cmigemo}/include"
    export LD_LIBRARY_PATH="${cmigemo}/lib"
  '';

  postPatch = ''
    sed -i 's~dict_path_base = "/usr/share/cmigemo"~dict_path_base = "/${cmigemo}/share/migemo"~g' test/test_cmigemo.py
  '';

  nativeCheckInputs = [ pytestCheckHook ];

  enabledTestPaths = [ "test/" ];

  pythonImportsCheck = [ "cmigemo" ];

  meta = {
    broken = stdenv.hostPlatform.isDarwin;
    homepage = "https://github.com/mooz/python-cmigemo";
    description = "Pure python binding for C/Migemo";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ illustris ];
  };
}