1

initial commit with vorgabe

This commit is contained in:
ChUrl
2021-08-09 16:32:53 +02:00
commit 744de3c46e
13 changed files with 1792 additions and 0 deletions

35
shell.nix Normal file
View File

@ -0,0 +1,35 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let myPython = python39.buildEnv.override {
extraLibs = with python39Packages; [
# Common Libs
rich
# numpy
# matplotlib
# scipy
# pytorch
# notbook
# Doom Emacs Libs
black
pyflakes
isort
nose
pytest
# DynLang
rply
];
};
in
mkShell {
buildInputs = [
myPython
nodePackages.pyright # LSP
pipenv # Doom
jetbrains.pycharm-professional
];
}