From 26f702fa2afe7e9ba433fbf264bde7f49a5f3d92 Mon Sep 17 00:00:00 2001
From: Emile <git@emile.space>
Date: Sun, 14 Apr 2024 16:32:55 +0200
Subject: basic python template

---
 nix/templates/python3/flake.nix | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 nix/templates/python3/flake.nix

(limited to 'nix')

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
+			    ]))
+			  ];
+			};
+	};
+}
+
-- 
cgit 1.4.1