lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.python-Levenshtein: add pythonImportsCheck

+8 -4
+8 -4
pkgs/development/python-modules/python-levenshtein/default.nix
··· 4 4 }: 5 5 6 6 buildPythonPackage rec { 7 - pname = "python-Levenshtein"; 7 + pname = "python-levenshtein"; 8 8 version = "0.12.2"; 9 + format = "setuptools"; 9 10 10 11 src = fetchPypi { 11 12 inherit pname version; ··· 15 16 # No tests included in archive 16 17 doCheck = false; 17 18 19 + pythonImportsCheck = [ 20 + "Levenshtein" 21 + ]; 22 + 18 23 meta = with lib; { 19 24 description = "Functions for fast computation of Levenshtein distance and string similarity"; 20 - homepage = "https://github.com/ztane/python-Levenshtein"; 21 - license = licenses.gpl2; 25 + homepage = "https://github.com/ztane/python-Levenshtein"; 26 + license = licenses.gpl2Plus; 22 27 maintainers = with maintainers; [ aske ]; 23 28 }; 24 - 25 29 }