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