covot/shell.nix

10 lines
154 B
Nix
Raw Permalink Normal View History

2020-10-27 01:05:56 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
2020-12-28 18:44:59 +01:00
buildInputs =
[ python38 python38Packages.telethon python38Packages.sqlalchemy sqlite ];
2020-10-27 01:05:56 +01:00
}