mirror of
https://gitlab.gwdg.de/j.hahn02/university.git
synced 2026-01-01 06:44:25 -05:00
19 lines
255 B
Nix
19 lines
255 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
packages = [
|
|
(pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
|
|
pandas
|
|
numpy
|
|
seaborn
|
|
matplotlib
|
|
setuptools
|
|
scipy
|
|
uncertainties
|
|
pillow
|
|
sympy
|
|
requests
|
|
]))
|
|
];
|
|
}
|