WGU-Capstone/shell.nix

11 lines
166 B
Nix
Raw Normal View History

2023-09-22 18:40:15 -07:00
{ pkgs ? import <nixpkgs> {} }:
let
2023-09-28 18:18:13 -07:00
2023-09-22 19:58:34 -07:00
in
pkgs.mkShell {
buildInputs = with pkgs.python311Packages; [
numpy
(opencv4.override { enableGtk2 = true; })
];
}