10 lines
180 B
Nix
10 lines
180 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
packages = [
|
|
(pkgs.python3.withPackages (python-pkgs: [
|
|
python-pkgs.pandas
|
|
python-pkgs.requests
|
|
]))
|
|
];
|
|
} |