From ffac7a885210c648f1b0041346a7ed586a7da751 Mon Sep 17 00:00:00 2001 From: Aman9das Date: Thu, 30 May 2024 12:02:02 +0530 Subject: [PATCH] bitwarden-menu: 0.4.1 -> 0.4.3 This update adds copy to clipboard functionality. https://github.com/firecat53/bitwarden-menu/releases/tag/v0.4.2 --- .../misc/bitwarden-menu/default.nix | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/misc/bitwarden-menu/default.nix b/pkgs/applications/misc/bitwarden-menu/default.nix index 5e067ac807d9..4c6eb0f1686b 100644 --- a/pkgs/applications/misc/bitwarden-menu/default.nix +++ b/pkgs/applications/misc/bitwarden-menu/default.nix @@ -1,23 +1,30 @@ { lib , buildPythonApplication +, python3Packages , fetchPypi , pynput -, xdg +, xdg-base-dirs }: buildPythonApplication rec { pname = "bitwarden-menu"; - version = "0.4.1"; - format = "setuptools"; + version = "0.4.3"; + format = "pyproject"; src = fetchPypi { - inherit pname version; - hash = "sha256-OC+MHEiUU6bDT2wSSDtu0KnwDwBpbLTBta0xjfuzlOI="; + pname = "bitwarden_menu"; + inherit version; + hash = "sha256-tuIolWvQ/vKSJr6oUTL7ZLPgdkYsIZods5yQNNfWbWY="; }; + nativeBuildInputs = with python3Packages; [ + hatch-vcs + hatchling + ]; + propagatedBuildInputs = [ pynput - xdg + xdg-base-dirs ]; doCheck = false; @@ -28,6 +35,6 @@ buildPythonApplication rec { mainProgram = "bwm"; homepage = "https://github.com/firecat53/bitwarden-menu"; license = licenses.mit; - maintainers = [ ]; + maintainers = with maintainers; [ aman9das ]; }; }