mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-09-29 15:30:53 -04:00
21 lines
324 B
Nix
21 lines
324 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
python = pkgs.python313.withPackages (ps:
|
|
with ps; [
|
|
fastapi
|
|
pydantic
|
|
guessit
|
|
aiohttp
|
|
watchfiles
|
|
langcodes
|
|
asyncpg
|
|
]);
|
|
in
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
python
|
|
ruff
|
|
fastapi-cli
|
|
pgformatter
|
|
];
|
|
}
|