nixpkgs/pkgs/development/python-modules/stringzilla/default.nix
2025-12-29 23:10:49 +00:00

52 lines
1.1 KiB
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
numpy,
pytest-repeat,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "stringzilla";
version = "4.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ashvardanian";
repo = "stringzilla";
tag = "v${version}";
hash = "sha256-5WAD5ZpzhdIDv1kUVinc5z91N/tQVScO75kOPC1WWlY=";
};
build-system = [
setuptools
];
pythonImportsCheck = [ "stringzilla" ];
nativeCheckInputs = [
numpy
pytest-repeat
pytestCheckHook
];
enabledTestPaths = [ "scripts/test_stringzilla.py" ];
disabledTests = [
# test downloads CaseFolding.txt from unicode.org
"test_utf8_case_fold_all_codepoints"
];
meta = {
changelog = "https://github.com/ashvardanian/StringZilla/releases/tag/${src.tag}";
description = "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances";
homepage = "https://github.com/ashvardanian/stringzilla";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
aciceri
dotlambda
];
};
}