Initialize repo

This commit is contained in:
Campbell Alden 2026-07-30 00:12:33 +09:00
commit 09381d17d0
9 changed files with 108 additions and 0 deletions

21
shell.nix Normal file
View file

@ -0,0 +1,21 @@
{ pkgs ? import <nixpkgs> {}}:
let
mypy = pkgs.python313.withPackages (ps: with ps; [
requests
flask
waitress
]);
in
with pkgs;
mkShell {
buildInputs = [
mypy
pylint
python313Packages.ipython
python313Packages.ruff
python313Packages.python-lsp-server
python313Packages.jedi-language-server
ty
ffmpeg
];
}