Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
625 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
marisa,
swig,
}:
buildPythonPackage {
pname = "marisa";
format = "setuptools";
inherit (marisa) src version;
nativeBuildInputs = [ swig ];
buildInputs = [ marisa ];
preBuild = ''
make -C bindings swig-python
cd bindings/python
'';
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "marisa" ];
meta = {
description = "Python bindings for marisa";
homepage = "https://github.com/s-yata/marisa-trie";
license = with lib.licenses; [
bsd2
lgpl21Plus
];
maintainers = with lib.maintainers; [ dotlambda ];
};
}