From 5bd5b31aa635572c232ff658074b4bb2167f3625 Mon Sep 17 00:00:00 2001 From: Guillaume Girol Date: Mon, 16 Jun 2025 12:00:00 +0000 Subject: [PATCH] rofi-rbw: 1.4.2 -> 1.5.1 changelog: https://github.com/fdw/rofi-rbw/releases 1.5.1: Fix release process Latest Unfortunately, the new automatic build process with uv was broken, resulting in useless wheel files. 1.5.0: It's time Changed Fields are shown in plain text or hidden based on their type. (#17) Stopped support for Python 3.8. Added Show a notification after copying TOTP. (#101) Support for fuzzel. (#109) Support cards. --- pkgs/applications/misc/rofi-rbw/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/rofi-rbw/default.nix b/pkgs/applications/misc/rofi-rbw/default.nix index 4e69d743cd05..f9504220ef5a 100644 --- a/pkgs/applications/misc/rofi-rbw/default.nix +++ b/pkgs/applications/misc/rofi-rbw/default.nix @@ -3,8 +3,7 @@ buildPythonApplication, fetchFromGitHub, configargparse, - setuptools, - poetry-core, + hatchling, rbw, waylandSupport ? false, @@ -18,19 +17,18 @@ buildPythonApplication rec { pname = "rofi-rbw"; - version = "1.4.2"; + version = "1.5.1"; format = "pyproject"; src = fetchFromGitHub { owner = "fdw"; repo = "rofi-rbw"; tag = version; - hash = "sha256-wUb89GkNB2lEfb42hMvcxpbjc1O+wx8AkFjq7aJwAko="; + hash = "sha256-Qdbz3UjWMCuJUzR6UMt/apt+OjMAr2U7uMtv9wxEZKE="; }; nativeBuildInputs = [ - setuptools - poetry-core + hatchling ]; buildInputs =