scripts/blusky/shell.nix
2024-11-03 15:40:20 -06:00

20 lines
205 B
Nix

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