Initialize repo
This commit is contained in:
commit
09381d17d0
9 changed files with 108 additions and 0 deletions
21
shell.nix
Normal file
21
shell.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue