blob: 2bfccb16ee06fbd0b5a9f0f34c152d987e24fdec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = [
(pkgs.python312.withPackages (
ps: with ps; [
graphqlclient
python-dotenv
tabulate
requests
geopy
]
))
];
}
|