remove timeout-decorator and add pyparsing

This commit is contained in:
stupidcomputer 2024-06-23 17:10:30 -05:00
parent 9f7e15d37b
commit 681c77d898
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.python311Packages; [ websockets watchdog pyperclip timeout-decorator ];
nativeBuildInputs = with pkgs.python311Packages; [ websockets watchdog pyperclip pyparsing ];
}