{ pkgs ? import {}, mode ? "shell" }: with pkgs; let matplotlib = pythonPackages.matplotlib.override { enableGtk3 = true; }; in stdenv.mkDerivation rec { name = "lab-data"; source = "."; buildInputs = with pythonPackages; [ matplotlib numpy sympy uncertainties ]; shellHook = '' #exec 2> /dev/null exec fish ''; }