python3Packages.editdistpy: 0.1.5 -> 0.1.6

Changed files
+7 -7
pkgs
development
python-modules
editdistpy
+7 -7
pkgs/development/python-modules/editdistpy/default.nix
···
buildPythonPackage rec {
pname = "editdistpy";
-
version = "0.1.5";
+
version = "0.1.6";
pyproject = true;
-
disabled = pythonOlder "3.8";
+
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "mammothb";
repo = "editdistpy";
tag = "v${version}";
-
hash = "sha256-kTaJkx1fdd2Rl4uhzxdZAFP/ArsM0qTPweJ1jlUcjxQ=";
+
hash = "sha256-bUdwhMFDIhHuIlcqIZt6mSh8xwW/2igw0QiWGvQBLC8=";
};
build-system = [
···
pythonImportsCheck = [ "editdistpy" ];
-
meta = with lib; {
+
meta = {
description = "Fast Levenshtein and Damerau optimal string alignment algorithms";
homepage = "https://github.com/mammothb/editdistpy";
-
changelog = "https://github.com/mammothb/editdistpy/releases/tag/v${version}";
-
license = licenses.mit;
-
maintainers = with maintainers; [ vizid ];
+
changelog = "https://github.com/mammothb/editdistpy/releases/tag/${src.tag}";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ vizid ];
};
}