mirror of
https://gitlab.com/akasroua/covot
synced 2025-04-20 22:01:12 +02:00
14 lines
183 B
Nix
14 lines
183 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
python38
|
|
python38Packages.telethon
|
|
python38Packages.aiosmtpd
|
|
python38Packages.pytest
|
|
];
|
|
|
|
}
|