Unverified Commit 30b430c4 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #295879 from ViZiD/editdistpy

python311Packages.editdistpy: init at 0.1.3
parents 3da824d0 8a66e5ab
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub

, pythonOlder

, setuptools
, cython_3
}:

buildPythonPackage rec {
  pname = "editdistpy";
  version = "0.1.3";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "mammothb";
    repo = "editdistpy";
    rev = "refs/tags/v${version}";
    hash = "sha256-4CtKadKpFmlZnz10NG0404oFl9DkdQwWwRSWgUPdh94=";
  };

  build-system = [
    setuptools
    cython_3
  ];

  # for tests need symspellpy package, symspellpy is not in nixpkgs...
  doCheck = false;

  pythonImportsCheck = [
    "editdistpy"
  ];

  meta = with lib;
    {
      description = "Fast Levenshtein and Damerau optimal string alignment algorithms";
      homepage = "https://github.com/mammothb/editdistpy";
      changelog = "https://github.com/mammothb/editdistpy/releases/tag/v${version}";
      license = licenses.mit;
      maintainers = with maintainers; [ vizid ];
    };
}
+2 −0
Original line number Diff line number Diff line
@@ -3635,6 +3635,8 @@ self: super: with self; {
  editdistance-s = callPackage ../development/python-modules/editdistance-s { };
  editdistpy = callPackage ../development/python-modules/editdistpy { };
  editorconfig = callPackage ../development/python-modules/editorconfig { };
  edk2-pytool-library = callPackage ../development/python-modules/edk2-pytool-library { };