{pkgs, ...}:
{
packages = with pkgs; [
pipenv
(python310.withPackages ( packages: with packages; [
matplotlib
numpy
pandas
scipy
]))
];
}