We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34dece6 commit 94a114cCopy full SHA for 94a114c
maintainers/scripts/update/update.nix
@@ -40,6 +40,11 @@
40
++ lib.optional (commit == "true") "--commit";
41
42
args = [packagesJson] ++ optionalArgs;
43
+
44
+ python = pkgs.python311.withPackages (ps:
45
+ with ps; [
46
+ click
47
+ ]);
48
in
49
pkgs.stdenv.mkDerivation {
50
name = "flake-packages-update-script";
@@ -55,6 +60,6 @@ in
55
60
'';
56
61
shellHook = ''
57
62
unset shellHook # Prevent contamination in nested shells.
58
- exec ${pkgs.python3}/bin/python ${./update.py} ${builtins.concatStringsSep " " args}
63
+ exec ${python}/bin/python ${./update.py} ${builtins.concatStringsSep " " args}
59
64
65
}
0 commit comments