Commit fd16fc7d authored by Austin Butler's avatar Austin Butler
Browse files

python3Packages.editdistance-s: remove

parent da31c0c8
Loading
Loading
Loading
Loading
+0 −35
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  cffi,
}:

buildPythonPackage rec {
  pname = "editdistance-s";
  version = "1.0.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "asottile";
    repo = "editdistance-s";
    rev = "v${version}";
    sha256 = "0w2qd5b6a3c3ahd0xy9ykq4wzqk0byqwdqrr26dyn8j2425j46lg";
  };

  propagatedNativeBuildInputs = [ cffi ];

  propagatedBuildInputs = [ cffi ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "editdistance_s" ];

  meta = with lib; {
    description = "Fast implementation of the edit distance (Levenshtein distance)";
    homepage = "https://github.com/asottile/editdistance-s";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ austinbutler ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -230,6 +230,7 @@ mapAliases ({
  dogpile_cache = dogpile-cache; # added 2021-10-28
  dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20
  dugong = throw "dugong is unmaintained since 2022 and has therefore been removed"; # added 2024-12-12
  editdistance-s = throw "editdistance-s has been removed since it was added solely for the identity package, which has moved on to ukkonen"; # added 2025-08-04
  eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
  EasyProcess = easyprocess; # added 2023-02-19
  email_validator = email-validator; # added 2022-06-22
+0 −2
Original line number Diff line number Diff line
@@ -4527,8 +4527,6 @@ self: super: with self; {
  editdistance = callPackage ../development/python-modules/editdistance { };
  editdistance-s = callPackage ../development/python-modules/editdistance-s { };
  editdistpy = callPackage ../development/python-modules/editdistpy { };
  editor = callPackage ../development/python-modules/editor { };