36 lines
494 B
Nix
36 lines
494 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
pyright
|
|
ruff
|
|
uv
|
|
|
|
(python3.withPackages (
|
|
python-pkgs: with python-pkgs; [
|
|
numpy
|
|
pandas
|
|
requests
|
|
aiohttp
|
|
beautifulsoup4
|
|
|
|
ipython
|
|
|
|
rich
|
|
tqdm
|
|
pydantic
|
|
pyyaml
|
|
httpx
|
|
|
|
pytest
|
|
|
|
types-requests
|
|
types-beautifulsoup4
|
|
types-pyyaml
|
|
pandas-stubs
|
|
]
|
|
))
|
|
|
|
python3Packages.debugpy
|
|
];
|
|
}
|