upgraded to python 3.11

This commit is contained in:
Danilo Reyes 2023-05-31 09:33:26 -06:00
parent c8b521084c
commit 84e93b766d
2 changed files with 613 additions and 621 deletions

File diff suppressed because it is too large Load Diff

View File

@ -282,7 +282,7 @@ This is the section where the apps that help me be productive come, a lot of
this are not used as often as I wish… this are not used as often as I wish…
#+begin_src nix #+begin_src nix
unstable.libreoffice-fresh # office, but based libreoffice-fresh # office, but based
calibre # ugly af eBook library manager calibre # ugly af eBook library manager
foliate # gtk eBook reader foliate # gtk eBook reader
gnome-feeds # feed reader, maybe will replace with nextcloud gnome-feeds # feed reader, maybe will replace with nextcloud
@ -397,7 +397,7 @@ bats # testing system, required by Exercism
bashdb # autocomplete bashdb # autocomplete
shellcheck # linting shellcheck # linting
shfmt # a shell parser and formatter shfmt # a shell parser and formatter
nodePackages.bash-language-server # LSP support # nodePackages.bash-language-server # LSP support
file # required by my tasks script? file # required by my tasks script?
gnome.zenity # dependency of my scripts gnome.zenity # dependency of my scripts
xclip # manipulate clipboard from scripts xclip # manipulate clipboard from scripts
@ -453,18 +453,19 @@ symbola
** PYTHON ** PYTHON
#+begin_src nix #+begin_src nix
]) ++ (with pkgs.python310Packages; [ ]) ++ (with pkgs.python311Packages; [
black # Python code formatter black # Python code formatter
flake8 # wraper for pyflakes, pycodestyle and mccabe flake8 # wraper for pyflakes, pycodestyle and mccabe
isort # sort Python imports isort # sort Python imports
nose # testing and running python scripts nose # testing and running python scripts
pipx # install python packages in a virtual environment pipx # install python packages in a virtual environment
poetry # dependency management made easy
pyflakes # checks source code for errors pyflakes # checks source code for errors
pylint # bug and style checker for python pylint # bug and style checker for python
pytest # framework for writing tests pytest # framework for writing tests
speedtest-cli # check internet speed from the comand line speedtest-cli # check internet speed from the comand line
editorconfig # follow rules of contributin editorconfig # follow rules of contributin
]) ++ (with pkgs.python310Packages; [
poetry # dependency management made easy
#+end_src #+end_src
** BAT-EXTRAS ** BAT-EXTRAS
@ -500,6 +501,7 @@ symbola
panel-scroll panel-scroll
reading-strip reading-strip
tactile tactile
]) ++ (with unstable.pkgs.gnomeExtensions; [
pano pano
#+end_src #+end_src
@ -507,7 +509,7 @@ symbola
#+begin_src nix #+begin_src nix
]) ++ (with pkgs.nodePackages; [ ]) ++ (with pkgs.nodePackages; [
dockerfile-language-server-nodejs # dockerfile-language-server-nodejs
markdownlint-cli markdownlint-cli
prettier prettier
pnpm pnpm