48 lines
756 B
Nix
48 lines
756 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = [
|
|
pkgs.poetry
|
|
|
|
(pkgs.python3.withPackages (
|
|
ppkgs: with ppkgs; [
|
|
pip
|
|
numpy
|
|
sympy
|
|
scipy
|
|
matplotlib
|
|
requests
|
|
pandas
|
|
scikit-learn
|
|
nltk
|
|
huggingface-hub
|
|
flask
|
|
gunicorn
|
|
torch
|
|
opencv-python
|
|
pillow
|
|
keras
|
|
tqdm
|
|
ipykernel
|
|
pyyaml
|
|
authlib
|
|
litellm
|
|
flake8
|
|
pycryptodome
|
|
seaborn
|
|
docling-core
|
|
openai
|
|
transformers
|
|
langchain
|
|
langchain-community
|
|
pydantic
|
|
pydantic-core
|
|
datasets
|
|
tokenizers
|
|
accelerate
|
|
peft
|
|
bitsandbytes
|
|
]
|
|
))
|
|
];
|
|
}
|