mirror of https://gitlab.com/akasroua/covot
14 lines
194 B
Nix
14 lines
194 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
python38
|
||
|
python38Packages.python-telegram-bot
|
||
|
python38Packages.aiosmtpd
|
||
|
python38Packages.pytest
|
||
|
];
|
||
|
|
||
|
}
|