0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python313Packages.iterfzf: 1.6.0.60.3 -> 1.8.0.62.0 (#408845)

This commit is contained in:
Fabian Affolter 2025-05-20 08:36:12 +02:00 committed by GitHub
commit 35bf7f0671
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "iterfzf";
version = "1.6.0.60.3";
version = "1.8.0.62.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "dahlia";
repo = "iterfzf";
tag = version;
hash = "sha256-M6ri90GNHOmr0HtQ/tGxqpG7f+D5rsH/SAlbaVtmTwU=";
hash = "sha256-eLgF+9p+sqxWR1VkSoeL0NPDMamzUYbql4gMeG8fyNY=";
};
postPatch = ''
@ -53,11 +53,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "iterfzf" ];
meta = with lib; {
meta = {
description = "Pythonic interface to fzf, a CLI fuzzy finder";
homepage = "https://github.com/dahlia/iterfzf";
changelog = "https://github.com/dahlia/iterfzf/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
platforms = lib.platforms.unix;
};
}