covot/shell.nix

14 lines
183 B
Nix
Raw Normal View History

2020-10-27 01:05:56 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
python38
2020-10-27 14:37:00 +01:00
python38Packages.telethon
2020-10-27 01:05:56 +01:00
python38Packages.aiosmtpd
python38Packages.pytest
];
}