Added requirements, the main python file and a nix shell; Updated readme

This commit is contained in:
mia 2025-05-14 13:53:41 +00:00
parent ad1ebace5f
commit b37dc19311
4 changed files with 37 additions and 7 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
(pkgs.buildFHSUserEnv {
name = "pipzone";
targetPkgs = pkgs: (with pkgs; [
python313
python313Packages.pip
python313Packages.virtualenv
]);
runScript = "bash --init-file /etc/profile";
}).env