1
0
mirror of https://gitlab.com/akasroua/covot synced 2025-04-20 22:01:12 +02:00
covot/shell.nix
2020-10-31 14:21:00 +01:00

15 lines
210 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
python38
python38Packages.telethon
python38Packages.pytest
python38Packages.isort
python38Packages.pyflakes
];
}