covot/shell.nix

14 lines
194 B
Nix
Raw Normal View History

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