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
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = with pkgs.python311Packages; [
|
buildInputs = with pkgs; [
|
||||||
numpy
|
python311Packages.numpy
|
||||||
(opencv4.override { enableGtk2 = true; })
|
(python311Packages.opencv4.override {
|
||||||
|
enableGtk2 = true;
|
||||||
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue