try adding python packages
This commit is contained in:
parent
ea52bc5f39
commit
7ce1d06fc4
|
@ -10,7 +10,7 @@
|
||||||
nitch
|
nitch
|
||||||
nix-prefetch-github
|
nix-prefetch-github
|
||||||
prismlauncher
|
prismlauncher
|
||||||
python39
|
# python39
|
||||||
ripgrep
|
ripgrep
|
||||||
rnix-lsp
|
rnix-lsp
|
||||||
rustup
|
rustup
|
||||||
|
|
|
@ -1,13 +1,8 @@
|
||||||
{pkgs, ...}: let
|
{pkgs, ...}:
|
||||||
my-python-packages = ps:
|
|
||||||
with ps; [
|
|
||||||
pandas
|
|
||||||
|
|
||||||
requests
|
|
||||||
];
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = [
|
environment.systemPackages = with pkgs; [
|
||||||
(pkgs.python3.withPackages my-python-packages)
|
(python311Full.withPackages(ps: with ps; [
|
||||||
|
pygame
|
||||||
|
]))
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue