about summary refs log tree commit diff
path: root/maintainers/scripts/update-octave-shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'maintainers/scripts/update-octave-shell.nix')
-rw-r--r--maintainers/scripts/update-octave-shell.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/maintainers/scripts/update-octave-shell.nix b/maintainers/scripts/update-octave-shell.nix
new file mode 100644
index 0000000000000..51d4844c79f34
--- /dev/null
+++ b/maintainers/scripts/update-octave-shell.nix
@@ -0,0 +1,12 @@
+{ nixpkgs ? import ../.. { }
+}:
+with nixpkgs;
+let
+  pyEnv = python3.withPackages(ps: with ps; [ packaging requests toolz pyyaml ]);
+in
+mkShell {
+  packages = [
+    pyEnv
+    nix-prefetch-scripts
+  ];
+}