chore: init

This commit is contained in:
Thiago Sposito 2026-02-04 21:11:16 -03:00
commit edb31d2d31
13 changed files with 531 additions and 0 deletions

22
flake.nix Normal file
View file

@ -0,0 +1,22 @@
{
description = "Table extraction from scrolling video";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
devShells.x86_64-linux.default = pkgs.mkShell {
packages = with pkgs; [
python3
python3Packages.opencv4
python3Packages.numpy
python3Packages.pytesseract
tesseract
ffmpeg
];
};
};
}