]> git.immae.eu Git - perso/Immae/Projets/Scripts/GoogleMapsTrafficPlots.git/blob - shell.nix
Initial commit
[perso/Immae/Projets/Scripts/GoogleMapsTrafficPlots.git] / shell.nix
1 { pkgs ? import <nixpkgs> {} }:
2 pkgs.mkShell {
3 buildInputs = [
4 pkgs.gnuplot
5 (pkgs.python3.withPackages (p: [p.requests p.pytz]))
6 ];
7 }