tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.editdistpy: 0.1.5 -> 0.1.6
Radik Islamov
7 months ago
42f12cb2
18db32bd
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
editdistpy
default.nix
+7
-7
pkgs/development/python-modules/editdistpy/default.nix
···
17
17
18
18
buildPythonPackage rec {
19
19
pname = "editdistpy";
20
20
-
version = "0.1.5";
20
20
+
version = "0.1.6";
21
21
pyproject = true;
22
22
23
23
-
disabled = pythonOlder "3.8";
23
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
29
-
hash = "sha256-kTaJkx1fdd2Rl4uhzxdZAFP/ArsM0qTPweJ1jlUcjxQ=";
29
29
+
hash = "sha256-bUdwhMFDIhHuIlcqIZt6mSh8xwW/2igw0QiWGvQBLC8=";
30
30
};
31
31
32
32
build-system = [
···
55
55
56
56
pythonImportsCheck = [ "editdistpy" ];
57
57
58
58
-
meta = with lib; {
58
58
+
meta = {
59
59
description = "Fast Levenshtein and Damerau optimal string alignment algorithms";
60
60
homepage = "https://github.com/mammothb/editdistpy";
61
61
-
changelog = "https://github.com/mammothb/editdistpy/releases/tag/v${version}";
62
62
-
license = licenses.mit;
63
63
-
maintainers = with maintainers; [ vizid ];
61
61
+
changelog = "https://github.com/mammothb/editdistpy/releases/tag/${src.tag}";
62
62
+
license = lib.licenses.mit;
63
63
+
maintainers = with lib.maintainers; [ vizid ];
64
64
};
65
65
}