From 07d9b659e3a9d529d71d9ecea7f9e732236d9071 Mon Sep 17 00:00:00 2001 From: randomuser Date: Tue, 26 Sep 2023 21:41:37 -0500 Subject: [PATCH] add nix shell --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..5322486 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: +let + my-python-packages = ps: with ps; [ + prompt-toolkit + pyautogui + opencv4 + numpy + # other python packages + ]; + my-python = pkgs.python3.withPackages my-python-packages; +in my-python.env