15 lines
225 B
Nix
15 lines
225 B
Nix
{ pkgs, ... }:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
(python3.withPackages (
|
|
python-pkgs: with python-pkgs; [
|
|
pip
|
|
numpy
|
|
pandas
|
|
python-dotenv
|
|
requests
|
|
]
|
|
))
|
|
];
|
|
}
|