Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 581 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-Levenshtein"; 8 version = "0.12.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "dc2395fbd148a1ab31090dd113c366695934b9e85fe5a4b2a032745efd0346f6"; 13 }; 14 15 # No tests included in archive 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Functions for fast computation of Levenshtein distance and string similarity"; 20 homepage = "https://github.com/ztane/python-Levenshtein"; 21 license = licenses.gpl2; 22 maintainers = with maintainers; [ aske ]; 23 }; 24 25}