aboutsummaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorAdrian Kummerlaender2024-11-23 17:35:33 +0100
committerAdrian Kummerlaender2024-11-23 17:35:33 +0100
commit4bf782b4da3664869c1c790d1fc80b41d435a409 (patch)
tree649d93b43be8b1c8423730865ee518530b6d383d /tasks
parent7515de2756c6a997c62de18558f927e62863ed4c (diff)
downloadnixos_home-4bf782b4da3664869c1c790d1fc80b41d435a409.tar
nixos_home-4bf782b4da3664869c1c790d1fc80b41d435a409.tar.gz
nixos_home-4bf782b4da3664869c1c790d1fc80b41d435a409.tar.bz2
nixos_home-4bf782b4da3664869c1c790d1fc80b41d435a409.tar.lz
nixos_home-4bf782b4da3664869c1c790d1fc80b41d435a409.tar.xz
nixos_home-4bf782b4da3664869c1c790d1fc80b41d435a409.tar.zst
nixos_home-4bf782b4da3664869c1c790d1fc80b41d435a409.zip
Update, remove deprecated Jupyter flake
Diffstat (limited to 'tasks')
-rw-r--r--tasks/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/tasks/default.nix b/tasks/default.nix
index 9e641c3..04013c2 100644
--- a/tasks/default.nix
+++ b/tasks/default.nix
@@ -12,7 +12,6 @@ let
mkPythonShellDerivation = n: ps: init: pkgs.stdenvNoCC.mkDerivation rec {
name = n;
buildInputs = [(pkgs.python3.withPackages (python-packages: with python-packages; ps ++ [
- jupyterlab
qtconsole
]))];
shellHook = let
@@ -27,10 +26,6 @@ let
'';
};
- mkJupyterEnv = kernel: pkgs.jupyterWith.jupyterlabWith {
- kernels = [ kernel ];
- };
-
in {
custom.tasks = {
cpp_shell = {
@@ -64,22 +59,5 @@ in {
biber
]);
};
-
- pymath_jupyter = {
- description = "Python for mathematics @ Jupyter Lab";
- directory = "~/";
- type = "jupyter-lab";
- environment = mkJupyterEnv (
- pkgs.jupyterWith.kernels.iPythonWith {
- name = "python";
- packages = p: with p; [
- numpy
- sympy
- scipy
- matplotlib
- ];
- }
- );
- };
};
}