From 51712b9cec524ecbe2afa9378341725baddc36d4 Mon Sep 17 00:00:00 2001 From: Wroclaw Date: Thu, 3 Apr 2025 16:42:50 +0200 Subject: [PATCH] bitwarden-menu: don't use python3Packages for dependencies --- pkgs/applications/misc/bitwarden-menu/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/bitwarden-menu/default.nix b/pkgs/applications/misc/bitwarden-menu/default.nix index 9b90e247f1b6..902fddb32297 100644 --- a/pkgs/applications/misc/bitwarden-menu/default.nix +++ b/pkgs/applications/misc/bitwarden-menu/default.nix @@ -1,8 +1,9 @@ { lib, buildPythonApplication, - python3Packages, fetchPypi, + hatch-vcs, + hatchling, pynput, xdg-base-dirs, }: @@ -18,7 +19,7 @@ buildPythonApplication rec { hash = "sha256-vUlNqSVdGhfN5WjDjf1ub32Y2WoBndIdFzfCNwo5+Vg="; }; - nativeBuildInputs = with python3Packages; [ + nativeBuildInputs = [ hatch-vcs hatchling ];