cereal/shell.nix
2026-08-02 22:50:05 +09:00

25 lines
415 B
Nix

{ pkgs ? import <nixpkgs> {}}:
let
mypy = pkgs.python313.withPackages (ps: with ps; [
requests
flask
waitress
sqlalchemy
argon2-cffi
pyjwt
cryptography
]);
in
with pkgs;
mkShell {
buildInputs = [
mypy
pylint
python313Packages.ipython
python313Packages.ruff
python313Packages.python-lsp-server
python313Packages.jedi-language-server
ty
ffmpeg
];
}