Skip to content

Instantly share code, notes, and snippets.

@573
Created March 10, 2025 10:11
Show Gist options
  • Save 573/6e241b9fab90ac94db40f20d8f62ff27 to your computer and use it in GitHub Desktop.
Save 573/6e241b9fab90ac94db40f20d8f62ff27 to your computer and use it in GitHub Desktop.
nix python package should find git i. e. jupyterlab-git or jupyterhub

$ 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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment