cereal/shell.nix
2026-07-30 00:12:33 +09:00

21 lines
357 B
Nix

{ 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
];
}