567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
31 lines
640 B
Nix
31 lines
640 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
poetry-core,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "krfzf-py";
|
|
version = "0.0.6";
|
|
format = "pyproject";
|
|
|
|
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 ];
|
|
};
|
|
}
|