Unverified Commit de6824c4 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.stringzilla: 4.3.0 -> 4.4.2 (#468477)

parents 300f2d42 c11e0c26
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";