covot/shell.nix

16 lines
223 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-11-17 14:16:44 +01:00
python38Packages.sqlalchemy
2020-10-27 01:05:56 +01:00
python38Packages.pytest
2020-10-31 14:21:00 +01:00
python38Packages.isort
2020-11-17 14:16:44 +01:00
sqlite
2020-10-27 01:05:56 +01:00
];
}