Kyoo/scanner/shell.nix
2025-06-07 17:45:39 +02:00

27 lines
441 B
Nix

{pkgs ? import <nixpkgs> {}}: let
python = pkgs.python313.withPackages (ps:
with ps; [
fastapi
pydantic
guessit
aiohttp
watchfiles
langcodes
asyncpg
pyjwt
python-slugify
]);
in
pkgs.mkShell {
packages = with pkgs; [
python
uv
ruff
fastapi-cli
pgformatter
];
UV_PYTHON_PREFERENCE = "only-system";
UV_PYTHON = pkgs.python313;
}