From 5fd053f4c47634cf7aeca1cb88de5ec614aefa28 Mon Sep 17 00:00:00 2001 From: coolneng Date: Thu, 20 Apr 2023 10:13:15 +0200 Subject: [PATCH] Revert "Run jupyter automatically in python datasci" This reverts commit b5abb0950777ba2f4afabf3ace70f4b66b82f017. --- python-data-science.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/python-data-science.nix b/python-data-science.nix index 0472ad7..345cf04 100644 --- a/python-data-science.nix +++ b/python-data-science.nix @@ -1,8 +1,8 @@ -{ pkgs ? import { } }: +{ config, lib, pkgs, ... }: with pkgs; -mkShell { +{ buildInputs = [ python3 python3Packages.jupyter @@ -12,8 +12,4 @@ mkShell { python3Packages.matplotlib python3Packages.seaborn ]; - - shellHook = '' - jupyter notebook - ''; }