mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
python3Packages.python-levenshtein: drop
Duplicate package, the correct name is just `levenshtein`.
This commit is contained in:
parent
adca32766a
commit
1b1a48f4b2
3 changed files with 1 additions and 31 deletions
|
@ -1,29 +0,0 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-levenshtein";
|
||||
version = "0.12.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "dc2395fbd148a1ab31090dd113c366695934b9e85fe5a4b2a032745efd0346f6";
|
||||
};
|
||||
|
||||
# No tests included in archive
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"Levenshtein"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Functions for fast computation of Levenshtein distance and string similarity";
|
||||
homepage = "https://github.com/ztane/python-Levenshtein";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ aske ];
|
||||
};
|
||||
}
|
|
@ -178,6 +178,7 @@ mapAliases ({
|
|||
python_magic = python-magic; # added 2022-05-07
|
||||
python_mimeparse = python-mimeparse; # added 2021-10-31
|
||||
python-language-server = throw "python-language-server is no longer maintained, use the python-lsp-server community fork instead."; # Added 2022-08-03
|
||||
python-Levenshtein = levenshtein;
|
||||
python-subunit = subunit; # added 2021-09-10
|
||||
pytest_xdist = pytest-xdist; # added 2021-01-04
|
||||
python_simple_hipchat = python-simple-hipchat; # added 2021-07-21
|
||||
|
|
|
@ -9166,8 +9166,6 @@ self: super: with self; {
|
|||
|
||||
python-ldap-test = callPackage ../development/python-modules/python-ldap-test { };
|
||||
|
||||
python-Levenshtein = callPackage ../development/python-modules/python-levenshtein { };
|
||||
|
||||
python-linux-procfs = callPackage ../development/python-modules/python-linux-procfs { };
|
||||
|
||||
python-logstash = callPackage ../development/python-modules/python-logstash { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue