mirror of
https://github.com/larstvei/nix-config.git
synced 2025-09-15 11:30:13 +00:00
24 lines
387 B
Nix
24 lines
387 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
(python3.withPackages (
|
|
python-packages: with python-packages; [
|
|
graphviz
|
|
html2text
|
|
hypothesis
|
|
matplotlib
|
|
numpy
|
|
openpyxl
|
|
pandas
|
|
pygments
|
|
python-lsp-server
|
|
scikit-learn
|
|
scipy
|
|
xlsxwriter
|
|
yattag
|
|
z3
|
|
]
|
|
))
|
|
];
|
|
}
|