Skip to content

Commit

Permalink
envs/yocto: add extraPythonPkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
FredeEB committed Dec 6, 2024
1 parent 0046199 commit 1ebdf95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion envs/yocto/shell.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ pkgs ? import <nixpkgs> { }
, extraPkgs ? [ ]
, extraPythonPkgs ? [ ]
}:

let
Expand Down Expand Up @@ -43,7 +44,7 @@ let
(ncurses'.override { unicodeSupport = false; })
patch
perl
(python3.withPackages (ps: [ ps.setuptools ps.pyaml ]))
(python3.withPackages (ps: [ ps.setuptools ps.pyaml ] ++ extraPythonPkgs))
rpcsvc-proto
unzip
util-linux
Expand Down

0 comments on commit 1ebdf95

Please sign in to comment.