summary refs log tree commit diff
path: root/pkgs/development/python-modules/marisa/default.nix
blob: a30f7062df0a7c4a2285884cd8898ffb15dd5c71 (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
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, marisa, swig
, isPy3k
}:

buildPythonPackage rec {
  pname = "marisa";
  version = "1.3.40";

  disabled = isPy3k;

  src = fetchFromGitHub {
    owner = "s-yata";
    repo  = "marisa-trie";
    rev   = "8dba9850b89d7828ebf33b8ab84df2b54d31260b";
    sha256 = "0pkp9fggk53lxlicfwrskgx33qplc4v6njbavlnz4x4z63zd4933";
  };

  nativeBuildInputs = [ swig marisa ];
  buildInputs = [ marisa ];

  sourceRoot = "${src.name}/bindings/python";

  meta = with lib; {
    description = "Python binding for marisa package (do not confuse with marisa-trie python bindings)";
    homepage    = "https://github.com/s-yata/marisa-trie";
    license     = with licenses; [ bsd2 lgpl2 ];
    maintainers = with maintainers; [ vanzef ];
  };
}