ktane/shell.nix

12 lines
239 B
Nix
Raw Normal View History

2023-09-26 21:41:37 -05:00
{ 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