blob: 777260be465258475f8562c709d3ba35974a1fe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "pfzy";
version = "0.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "kazhala";
repo = "pfzy";
tag = version;
hash = "sha256-+Ba/yLUfT0SPPAJd+pKyjSvNrVpEwxW3xEKFx4JzpYk=";
};
nativeBuildInputs = [ poetry-core ];
pythonImportsCheck = [ "pfzy" ];
meta = {
description = "Python port of the fzy fuzzy string matching algorithm";
homepage = "https://github.com/kazhala/pfzy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|