This repository has been archived on 2026-06-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cas-pml/NSL/aufgaben/devenv.nix
T

29 lines
390 B
Nix

{ pkgs, ... }:
{
packages = [
pkgs.zlib
pkgs.stdenv.cc.cc.lib
];
languages.python = {
enable = true;
venv.enable = true;
venv.requirements = ''
jupyterlab
kmodes
matplotlib
numpy
pandas
scikit-learn
seaborn
'';
};
env.LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.zlib
pkgs.stdenv.cc.cc.lib
];
}