Files
nixpkgs/pkgs/development/python-modules/marisa-trie/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

67 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
replaceVars,
marisa-cpp,
cython,
setuptools,
pytestCheckHook,
hypothesis,
}:
buildPythonPackage rec {
pname = "marisa-trie";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pytries";
repo = "marisa-trie";
tag = version;
hash = "sha256-aWfm13nrASAaD+bcMpv85emXnCFyVtZTdhl79yJuOss=";
};
patches = [
(replaceVars ./unvendor-marisa.patch {
marisa = lib.getDev marisa-cpp;
})
];
build-system = [
cython
setuptools
];
buildInputs = [
marisa-cpp
];
nativeCheckInputs = [
pytestCheckHook
hypothesis
];
preBuild = ''
./update_cpp.sh
'';
disabledTestPaths = [
# Don't test packaging
"tests/test_packaging.py"
];
pythonImportsCheck = [ "marisa_trie" ];
meta = with lib; {
description = "Static memory-efficient Trie-like structures for Python based on marisa-trie C++ library";
longDescription = ''
There are official SWIG-based Python bindings included in C++ library distribution.
This package provides alternative Cython-based pip-installable Python bindings.
'';
homepage = "https://github.com/kmike/marisa-trie";
changelog = "https://github.com/pytries/marisa-trie/blob/${src.tag}/CHANGES.rst";
license = licenses.mit;
};
}