This commit is contained in:
2024-10-31 23:40:32 -06:00
parent 8ea222d2e4
commit cf627acdb0
5 changed files with 2010 additions and 0 deletions

19
blusky/shell.nix Normal file
View File

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