diff options
Diffstat (limited to 'nix/templates/python3/flake.nix')
-rw-r--r-- | nix/templates/python3/flake.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/nix/templates/python3/flake.nix b/nix/templates/python3/flake.nix new file mode 100644 index 0000000..f5c2378 --- /dev/null +++ b/nix/templates/python3/flake.nix @@ -0,0 +1,31 @@ +{ + description = "a simple flake for using python with some dependencies"; + nixConfig.bash-promt = "py; "; + + inputs = { + nixpkgs.url = "git+https://github.com/nixos/nixpkgs?ref=release-23.11"; + }; + + outputs = { nixpkgs, ... }: + + let + pkgs = import nixpkgs { + system = "aarch64-darwin"; + }; + in { + devShells."aarch64-darwin".default = + let + python = pkgs.python311; + in + pkgs.mkShell { + packages = [ + (python.withPackages (ps: with ps; [ + pwntools + beautifulsoup4 + requests + ])) + ]; + }; + }; +} + |