depot/third_party/nixpkgs/pkgs/development/python-modules/marisa/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
629 B
Nix

{
lib,
buildPythonPackage,
marisa,
swig,
}:
buildPythonPackage rec {
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 ];
};
}