Initial (and hopefully last) commit

This commit is contained in:
mia 2026-03-12 10:37:32 +01:00
commit 06374b2608
8 changed files with 326 additions and 0 deletions

18
shell.nix Normal file
View file

@ -0,0 +1,18 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (python-pkgs: [
python-pkgs.pygame
python-pkgs.matplotlib
python-pkgs.sklearn-compat
python-pkgs.pandas
python-pkgs.opencv-python
python-pkgs.pytesseract
python-pkgs.tensorflow
python-pkgs.keras
python-pkgs.pyqt6
]))
];
}