WGU-Capstone/shell.nix

10 lines
206 B
Nix
Raw Normal View History

2023-09-22 18:40:15 -07:00
{ pkgs ? import <nixpkgs> {} }:
let
my-python-packages = ps: with ps; [
opencv4
numpy
# other python packages
];
my-python = pkgs.python3.withPackages my-python-packages;
in my-python.env