python3Packages.editdistpy: 0.1.5 -> 0.1.6

+7 -7
+7 -7
pkgs/development/python-modules/editdistpy/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "editdistpy"; 20 - version = "0.1.5"; 20 + version = "0.1.6"; 21 21 pyproject = true; 22 22 23 - disabled = pythonOlder "3.8"; 23 + disabled = pythonOlder "3.9"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "mammothb"; 27 27 repo = "editdistpy"; 28 28 tag = "v${version}"; 29 - hash = "sha256-kTaJkx1fdd2Rl4uhzxdZAFP/ArsM0qTPweJ1jlUcjxQ="; 29 + hash = "sha256-bUdwhMFDIhHuIlcqIZt6mSh8xwW/2igw0QiWGvQBLC8="; 30 30 }; 31 31 32 32 build-system = [ ··· 55 55 56 56 pythonImportsCheck = [ "editdistpy" ]; 57 57 58 - meta = with lib; { 58 + meta = { 59 59 description = "Fast Levenshtein and Damerau optimal string alignment algorithms"; 60 60 homepage = "https://github.com/mammothb/editdistpy"; 61 - changelog = "https://github.com/mammothb/editdistpy/releases/tag/v${version}"; 62 - license = licenses.mit; 63 - maintainers = with maintainers; [ vizid ]; 61 + changelog = "https://github.com/mammothb/editdistpy/releases/tag/${src.tag}"; 62 + license = lib.licenses.mit; 63 + maintainers = with lib.maintainers; [ vizid ]; 64 64 }; 65 65 }