Install python packages
This commit is contained in:
parent
24ba743276
commit
0dd7700501
19
global.nix
19
global.nix
|
|
@ -18,13 +18,27 @@
|
||||||
stablePackages = with inputs.nixpkgs-stable.legacyPackages.x86_64-linux; [
|
stablePackages = with inputs.nixpkgs-stable.legacyPackages.x86_64-linux; [
|
||||||
gtk-pipe-viewer
|
gtk-pipe-viewer
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# You can specify here what python packages you waint available to python
|
||||||
|
# Custom Python package with all the (Python) imports I need
|
||||||
|
my-python-packages = python-packages: with python-packages; [ # ...
|
||||||
|
setuptools
|
||||||
|
watchdog
|
||||||
|
epc
|
||||||
|
six
|
||||||
|
rapidfuzz
|
||||||
|
paramiko
|
||||||
|
];
|
||||||
|
python-with-my-packages = pkgs.python3.withPackages my-python-packages;
|
||||||
in
|
in
|
||||||
# Normal (unstable) packages
|
# Normal (unstable) packages
|
||||||
with pkgs; [
|
with pkgs; [
|
||||||
|
python-with-my-packages
|
||||||
|
|
||||||
nix-index
|
nix-index
|
||||||
git
|
git
|
||||||
wget
|
wget
|
||||||
ntfs3g
|
ntfs3g
|
||||||
|
|
||||||
# Programming Stuff, language servers etc
|
# Programming Stuff, language servers etc
|
||||||
gcc
|
gcc
|
||||||
|
|
@ -73,7 +87,6 @@
|
||||||
appimage-run
|
appimage-run
|
||||||
imagemagick
|
imagemagick
|
||||||
yt-dlp
|
yt-dlp
|
||||||
python3
|
|
||||||
cifs-utils
|
cifs-utils
|
||||||
exfatprogs
|
exfatprogs
|
||||||
usbutils
|
usbutils
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue