mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 12:14:46 -04:00
22 lines
343 B
Nix
22 lines
343 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
python = pkgs.python313.withPackages (ps:
|
|
with ps; [
|
|
fastapi
|
|
pydantic
|
|
guessit
|
|
aiohttp
|
|
watchfiles
|
|
langcodes
|
|
psycopg
|
|
psycopg-pool
|
|
]);
|
|
in
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
python
|
|
ruff
|
|
fastapi-cli
|
|
pgformatter
|
|
];
|
|
}
|