mirror of
https://gitlab.com/akasroua/covot
synced 2025-04-20 13:51:11 +02:00
10 lines
154 B
Nix
10 lines
154 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
buildInputs =
|
|
[ python38 python38Packages.telethon python38Packages.sqlalchemy sqlite ];
|
|
|
|
}
|