mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-10-31 10:37:13 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			441 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			441 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {pkgs ? import <nixpkgs> {}}: let
 | |
|   python = pkgs.python313.withPackages (ps:
 | |
|     with ps; [
 | |
|       fastapi
 | |
|       pydantic
 | |
|       guessit
 | |
|       aiohttp
 | |
|       watchfiles
 | |
|       langcodes
 | |
|       asyncpg
 | |
|       pyjwt
 | |
|       python-slugify
 | |
|     ]);
 | |
| in
 | |
|   pkgs.mkShell {
 | |
|     packages = with pkgs; [
 | |
|       python
 | |
|       uv
 | |
|       ruff
 | |
|       fastapi-cli
 | |
|       pgformatter
 | |
|     ];
 | |
| 
 | |
|     UV_PYTHON_PREFERENCE = "only-system";
 | |
|     UV_PYTHON = pkgs.python313;
 | |
|   }
 |