fixed shell.nix opencv python package
This commit is contained in:
parent
5cbcdeffb8
commit
e35245cd8c
1 changed files with 5 additions and 3 deletions
|
@ -3,8 +3,10 @@ let
|
|||
|
||||
in
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs.python311Packages; [
|
||||
numpy
|
||||
(opencv4.override { enableGtk2 = true; })
|
||||
buildInputs = with pkgs; [
|
||||
python311Packages.numpy
|
||||
(python311Packages.opencv4.override {
|
||||
enableGtk2 = true;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue