Kyoo/scanner/shell.nix
2026-01-02 12:08:36 +01:00

27 lines
441 B
Nix

{pkgs ? import <nixpkgs> {}}: let
python = pkgs.python314.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.python314;
}