Commit c11e0c26 authored by Robert Schütz's avatar Robert Schütz
Browse files
parent 8645d7de
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "stringzilla";
  version = "4.3.0";
  version = "4.4.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ashvardanian";
    repo = "stringzilla";
    tag = "v${version}";
    hash = "sha256-MitvjIb+mBK22hxjtqbVB6kYP7pdvF5LxWiS2R/6Jk4=";
    hash = "sha256-o3MrIPzu61Zod6RpmWA356hlquVPQKu7+aYZrqxjMjo=";
  };

  build-system = [
@@ -34,6 +34,11 @@ buildPythonPackage rec {

  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";