From 681c77d89835d6669cfcc03cc24ee56805989bad Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Sun, 23 Jun 2024 17:10:30 -0500 Subject: [PATCH] remove timeout-decorator and add pyparsing --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index cd833d9..d59e633 100644 --- a/shell.nix +++ b/shell.nix @@ -1,4 +1,4 @@ { pkgs ? import {} }: pkgs.mkShell { - nativeBuildInputs = with pkgs.python311Packages; [ websockets watchdog pyperclip timeout-decorator ]; + nativeBuildInputs = with pkgs.python311Packages; [ websockets watchdog pyperclip pyparsing ]; }