Properly installed python scripts

This commit is contained in:
Danilo Reyes 2023-12-01 15:38:30 -06:00
parent 14a8ab53cf
commit a8ab50fd11

View File

@ -444,7 +444,24 @@ cachix # why spend time compiling?
editorconfig # follow rules of contributin editorconfig # follow rules of contributin
black # Python code formatter black # Python code formatter
pylint # bug and style checker for python pylint # bug and style checker for python
(buildPythonApplication rec { ])) # base language
# C# & Rust
# omnisharp-roslyn # c# linter and code formatter
# HASKELL
# cabal-install # haskell interface
# JS
nodejs # not as bad as I thought
#+end_src
** CUSTOM PYTHON SCRIPTS
Libraries & apps not found on the nix-store and scripts made by me.
#+begin_src nix
]) ++ (with pkgs.python3Packages; [
(buildPythonApplication rec {
pname = "download"; pname = "download";
version = "1.5"; version = "1.5";
src = ../scripts/download/.; src = ../scripts/download/.;
@ -452,8 +469,8 @@ cachix # why spend time compiling?
buildInputs = [ setuptools ]; buildInputs = [ setuptools ];
propagatedBuildInputs = propagatedBuildInputs =
[ pyyaml types-pyyaml ]; [ pyyaml types-pyyaml ];
}) })
(buildPythonApplication rec { (buildPythonApplication rec {
pname = "ffpb"; pname = "ffpb";
version = "0.4.1"; version = "0.4.1";
src = fetchPypi { src = fetchPypi {
@ -464,29 +481,19 @@ cachix # why spend time compiling?
buildInputs = [ setuptools ]; buildInputs = [ setuptools ];
propagatedBuildInputs = propagatedBuildInputs =
[ tqdm ]; [ tqdm ];
}) })
# (buildPythonApplication rec { # (buildPythonApplication rec {
# pname = "qbit_manage"; # pname = "qbit_manage";
# version = "4.0.3"; # version = "4.0.3";
# src = fetchPypi { # src = fetchPypi {
# inherit pname version; # inherit pname version;
# sha256 = "sha256-7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk="; # sha256 = "sha256-7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk=";
# }; # };
# doCheck = true; # doCheck = true;
# buildInputs = [ setuptools ]; # buildInputs = [ setuptools ];
# propagatedBuildInputs = # propagatedBuildInputs =
# [ gitpython requests retrying ruamel-yaml schedule unstable.qbittorrent-api ]; # [ gitpython requests retrying ruamel-yaml schedule unstable.qbittorrent-api ];
# }) # })
]) ) # base language
# C# & Rust
# omnisharp-roslyn # c# linter and code formatter
# HASKELL
# cabal-install # haskell interface
# JS
nodejs # not as bad as I thought
#+end_src #+end_src
** NODEJS PACKAGES ** NODEJS PACKAGES