Files
discord-heidi/shell.nix
2021-03-29 19:06:38 +02:00

23 lines
334 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let myPython = python38.buildEnv.override {
extraLibs = with python38Packages; [
python-dotenv
rich
discordpy
beautifulsoup4
selenium
];
};
in
mkShell {
buildInputs = [
myPython
nodePackages.pyright
geckodriver
];
}