lol
0
fork

Configure Feed

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

python3Packages.levenshtein: init at 0.16.0

+43
+41
pkgs/development/python-modules/levenshtein/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , pytestCheckHook 6 + , rapidfuzz 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "levenshtein"; 11 + version = "0.16.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.6"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "maxbachmann"; 18 + repo = "Levenshtein"; 19 + rev = "v${version}"; 20 + sha256 = "agshUVkkqogj4FbonFd/rrGisMOomS62NND66YKZvjg="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + rapidfuzz 25 + ]; 26 + 27 + checkInputs = [ 28 + pytestCheckHook 29 + ]; 30 + 31 + pythonImportsCheck = [ 32 + "Levenshtein" 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "Functions for fast computation of Levenshtein distance and string similarity"; 37 + homepage = "https://github.com/maxbachmann/Levenshtein"; 38 + license = licenses.gpl2Plus; 39 + maintainers = with maintainers; [ fab ]; 40 + }; 41 + }
+2
pkgs/top-level/python-packages.nix
··· 4276 4276 4277 4277 leveldb = callPackage ../development/python-modules/leveldb { }; 4278 4278 4279 + levenshtein = callPackage ../development/python-modules/levenshtein { }; 4280 + 4279 4281 lexid = callPackage ../development/python-modules/lexid { }; 4280 4282 4281 4283 lhapdf = toPythonModule (pkgs.lhapdf.override {