scripts/non-nix/blusky/shell.nix

20 lines
205 B
Nix

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