{ buildPythonPackage, fetchFromGitHub, lib, numpy, pytest-repeat, pytestCheckHook, setuptools, }: buildPythonPackage rec { pname = "stringzilla"; version = "4.4.2"; pyproject = true; src = fetchFromGitHub { owner = "ashvardanian"; repo = "stringzilla"; tag = "v${version}"; hash = "sha256-o3MrIPzu61Zod6RpmWA356hlquVPQKu7+aYZrqxjMjo="; }; 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 ]; }; }