Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / editdistance / default.nix
blobb4f62dd6e8239ffb3ed8d9e2aac310ab2582fa1d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , cython
6 , pdm-backend
7 , setuptools
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "editdistance";
13   version = "0.8.1";
14   pyproject =true;
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "roy-ht";
20     repo = pname;
21     rev = "refs/tags/v${version}";
22     hash = "sha256-Ncdg8S/UHYqJ1uFnHk9qhHMM3Lrop00woSu3PLKvuBI=";
23   };
25   nativeBuildInputs = [
26     cython
27     pdm-backend
28     setuptools
29   ];
31   nativeCheckInputs = [
32     pytestCheckHook
33   ];
35   pythonImportsCheck = [
36     "editdistance"
37   ];
39   meta = with lib; {
40     description = "Python implementation of the edit distance (Levenshtein distance)";
41     homepage = "https://github.com/roy-ht/editdistance";
42     license = with licenses; [ mit ];
43     maintainers = with maintainers; [ fab ];
44   };