mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
31 lines
642 B
Nix
31 lines
642 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 = with lib; {
|
|
description = "Pythonic Fzf Wrapper";
|
|
downloadPage = "https://github.com/justfoolingaround/fzf.py";
|
|
homepage = "https://pypi.org/project/krfzf-py/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
};
|
|
}
|