covot/shell.nix

15 lines
210 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.pytest
2020-10-31 14:21:00 +01:00
python38Packages.isort
python38Packages.pyflakes
2020-10-27 01:05:56 +01:00
];
}