15 name = "common-updater-scripts";
19 python3Packages.wrapPython
23 python3Packages.beautifulsoup4
24 python3Packages.requests
31 cp ${./scripts}/* $out/bin
33 # wrap non python scripts
34 for f in $out/bin/*; do
35 if ! (head -n1 "$f" | grep -q '#!.*/env.*\(python\|pypy\)'); then
36 wrapProgram $f --prefix PATH : ${lib.makeBinPath [ coreutils diffutils git gnugrep gnused jq nix ]}
41 makeWrapperArgs+=( --prefix PATH : "${lib.makeBinPath [ nix ]}" )