mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-13 23:06:35 +01:00
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
30 lines
636 B
Nix
30 lines
636 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|