2024-12-14 13:54:11 -06:00

20 lines
205 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
with pkgs;
mkShell {
packages = [
(python3.withPackages (
ps: with ps; [
setuptools
requests
]
))
];
buildInputs = [
];
}