installed python packages the right way

sda
This commit is contained in:
Danilo Reyes 2023-12-01 10:19:58 -06:00
parent d9194fad76
commit b461fafa99

View File

@ -625,28 +625,9 @@ nixfmt # linting
cachix # why spend time compiling?
# PYTHON.
python3 # base language
(python3.withPackages (ps: with ps; [
pipenv # python development workflow for humans
# poetry # dependency management made easy
# C# & Rust
# omnisharp-roslyn # c# linter and code formatter
# HASKELL
ghc # compiler
cabal-install # haskell app manager
stack # haskell took stack
# unstable.haskellPackages.ghcup
# JS
nodejs # not as bad as I thought
# jq # linting
#+end_src
*** PYTHON
#+begin_src nix
]) ++ (with pkgs.python3Packages; [
flake8 # wraper for pyflakes, pycodestyle and mccabe
isort # sort Python imports
nose # testing and running python scripts
@ -677,6 +658,20 @@ nodejs # not as bad as I thought
propagatedBuildInputs =
[ tqdm ];
})
]))
# C# & Rust
# omnisharp-roslyn # c# linter and code formatter
# HASKELL
ghc # compiler
cabal-install # haskell app manager
stack # haskell took stack
# unstable.haskellPackages.ghcup
# JS
nodejs # not as bad as I thought
# jq # linting
#+end_src
*** NODEJS PACKAGES