mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-21 06:20:34 -04:00
22 lines
335 B
Nix
22 lines
335 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
python = pkgs.python312.withPackages (ps:
|
|
with ps; [
|
|
guessit
|
|
aiohttp
|
|
jsons
|
|
watchfiles
|
|
pika
|
|
aio-pika
|
|
requests
|
|
dataclasses-json
|
|
msgspec
|
|
langcodes
|
|
]);
|
|
in
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
python
|
|
ruff
|
|
];
|
|
}
|