Add Python to System
							parent
							
								
									81cb305245
								
							
						
					
					
						commit
						467b6f6445
					
				| 
						 | 
				
			
			@ -2,6 +2,7 @@
 | 
			
		|||
  imports = [
 | 
			
		||||
    ./packages/office.nix
 | 
			
		||||
    ./packages/terminal.nix
 | 
			
		||||
    ./packages/python.nix
 | 
			
		||||
    ./packages/matlab.nix
 | 
			
		||||
    ./packages/containers.nix
 | 
			
		||||
    ./packages/deeplabcut.nix
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -0,0 +1,12 @@
 | 
			
		|||
{config, lib, pkgs, ...}: {
 | 
			
		||||
  environment.systemPackages = with pkgs; [
 | 
			
		||||
    (pkgs.python3.withPackages (p: with p; [
 | 
			
		||||
      numpy
 | 
			
		||||
      scipy
 | 
			
		||||
      pandas
 | 
			
		||||
      matplotlib
 | 
			
		||||
      tqdm
 | 
			
		||||
      seaborn
 | 
			
		||||
    ]))
 | 
			
		||||
  ];
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue