mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 09:13:56 +00:00
Diff: https://github.com/s-yata/marisa-trie/compare/v0.3.0...v0.3.1 Changelog: https://github.com/s-yata/marisa-trie/releases/tag/v0.3.1
43 lines
704 B
Nix
43 lines
704 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
marisa,
|
|
setuptools,
|
|
swig,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "marisa";
|
|
inherit (marisa) src version;
|
|
pyproject = true;
|
|
|
|
patches = marisa.patches or [ ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
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 ];
|
|
};
|
|
}
|