installed python packages the right way
sda
This commit is contained in:
parent
d9194fad76
commit
b461fafa99
@ -625,9 +625,40 @@ nixfmt # linting
|
|||||||
cachix # why spend time compiling?
|
cachix # why spend time compiling?
|
||||||
|
|
||||||
# PYTHON.
|
# PYTHON.
|
||||||
python3 # base language
|
(python3.withPackages (ps: with ps; [
|
||||||
pipenv # python development workflow for humans
|
pipenv # python development workflow for humans
|
||||||
# poetry # dependency management made easy
|
# poetry # dependency management made easy
|
||||||
|
flake8 # wraper for pyflakes, pycodestyle and mccabe
|
||||||
|
isort # sort Python imports
|
||||||
|
nose # testing and running python scripts
|
||||||
|
pyflakes # checks source code for errors
|
||||||
|
pytest # framework for writing tests
|
||||||
|
speedtest-cli # check internet speed from the comand line
|
||||||
|
editorconfig # follow rules of contributin
|
||||||
|
black # Python code formatter
|
||||||
|
pylint # bug and style checker for python
|
||||||
|
(buildPythonApplication rec {
|
||||||
|
pname = "download";
|
||||||
|
version = "1.5";
|
||||||
|
src = ../scripts/download/.;
|
||||||
|
doCheck = false;
|
||||||
|
buildInputs = [ setuptools ];
|
||||||
|
propagatedBuildInputs =
|
||||||
|
[ pyyaml types-pyyaml ];
|
||||||
|
})
|
||||||
|
(buildPythonApplication rec {
|
||||||
|
pname = "ffpb";
|
||||||
|
version = "0.4.1";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk=";
|
||||||
|
};
|
||||||
|
doCheck = false;
|
||||||
|
buildInputs = [ setuptools ];
|
||||||
|
propagatedBuildInputs =
|
||||||
|
[ tqdm ];
|
||||||
|
})
|
||||||
|
]))
|
||||||
|
|
||||||
# C# & Rust
|
# C# & Rust
|
||||||
# omnisharp-roslyn # c# linter and code formatter
|
# omnisharp-roslyn # c# linter and code formatter
|
||||||
@ -643,42 +674,6 @@ nodejs # not as bad as I thought
|
|||||||
# jq # linting
|
# jq # linting
|
||||||
#+end_src
|
#+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
|
|
||||||
pyflakes # checks source code for errors
|
|
||||||
pytest # framework for writing tests
|
|
||||||
speedtest-cli # check internet speed from the comand line
|
|
||||||
editorconfig # follow rules of contributin
|
|
||||||
black # Python code formatter
|
|
||||||
pylint # bug and style checker for python
|
|
||||||
(buildPythonApplication rec {
|
|
||||||
pname = "download";
|
|
||||||
version = "1.5";
|
|
||||||
src = ../scripts/download/.;
|
|
||||||
doCheck = false;
|
|
||||||
buildInputs = [ setuptools ];
|
|
||||||
propagatedBuildInputs =
|
|
||||||
[ pyyaml types-pyyaml ];
|
|
||||||
})
|
|
||||||
(buildPythonApplication rec {
|
|
||||||
pname = "ffpb";
|
|
||||||
version = "0.4.1";
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "sha256-7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk=";
|
|
||||||
};
|
|
||||||
doCheck = false;
|
|
||||||
buildInputs = [ setuptools ];
|
|
||||||
propagatedBuildInputs =
|
|
||||||
[ tqdm ];
|
|
||||||
})
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
*** NODEJS PACKAGES
|
*** NODEJS PACKAGES
|
||||||
Mostly language servers and linters.
|
Mostly language servers and linters.
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user