blob: 0dfde7ecc854740e44cdcfa190372504e418e980 (
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,
fetchPypi,
poetry-core,
}:
buildPythonPackage rec {
pname = "krfzf-py";
version = "0.0.6";
pyproject = true;
src = fetchPypi {
pname = "krfzf_py";
inherit version;
hash = "sha256-/M9Atu9MLAGmnEdx6tknMJAit2o4Xt971uQ7pb0CBCk=";
};
nativeBuildInputs = [ poetry-core ];
pythonImportsCheck = [ "fzf" ];
meta = {
description = "Pythonic Fzf Wrapper";
downloadPage = "https://github.com/justfoolingaround/fzf.py";
homepage = "https://pypi.org/project/krfzf-py/";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
|