$ nix shell nixpkgs#nixVersions.nix_2_20 --command nix-shell --pure
with
let
nixpkgs = builtins.fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = builtins.attrValues {
jupyterlabEnv = pkgs.python311.withPackages (
pythonPackageSet:
(builtins.attrValues {
inherit
(pythonPackageSet)
jupyterlab
python-lsp-server
jupyterlab-git
;
"jupyterhub+git" = pythonPackageSet.jupyterhub.overridePythonAttrs (p: {
dependencies = p.dependencies ++ [ pkgs.git ];
});
})
);
};
}
as in https://discourse.nixos.org/t/jupyterlab-and-an-r-env/38214/9