Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-Levenshtein"; 8 version = "0.12.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1c9ybqcja31nghfcc8xxbbz9h60s9qi12b9hr4jyl69xbvg12fh3"; 13 }; 14 15 # No tests included in archive 16 doCheck = false; 17 18 meta = with stdenv.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}