15 lines
202 B
Nix
15 lines
202 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
sqlite
|
|
(python3.withPackages (ps: [
|
|
ps.beautifulsoup4
|
|
ps.requests
|
|
ps.matplotlib
|
|
]))
|
|
];
|
|
}
|