This commit is contained in:
Christoph
2021-10-12 18:50:00 +02:00
parent d82a431789
commit 9246145195
2 changed files with 0 additions and 42 deletions

1
.envrc
View File

@ -1 +0,0 @@
eval "$(lorri direnv)"

View File

@ -1,41 +0,0 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let myPython = python39.buildEnv.override {
extraLibs = with python39Packages; [
# Common Libs
rich
# numpy
# matplotlib
# scipy
# torch
# Doom Emacs Libs
black
pyflakes
isort
nose
pytest
# For Discord-Bot
python-dotenv # Env
discordpy # Discord
beautifulsoup4 # Scraping
selenium # Scraping
pynacl # Voice
];
};
in
mkShell {
buildInputs = [
myPython
nodePackages.pyright # LSP
pipenv # Doom
firefox # Selenium
geckodriver # Selenium
ffmpeg # Voice
];
}