add nix shell

This commit is contained in:
randomuser 2023-09-26 21:41:37 -05:00
parent d58ae87f8c
commit 07d9b659e3
1 changed files with 11 additions and 0 deletions

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
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