about summary refs log tree commit diff
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2026-05-29 23:59:45 +0200
committeruser@node5.net <user@node5.net>2026-05-30 00:05:01 +0200
commitcc83ff401fe5d13b44fdfa3c33b757bb99f8cb8c (patch)
treea873a47cf70abcb41d8c267f0cfa003e00f75456
parent1dc2c3b9d679ca25067fe70e3fda59b3246af8aa (diff)
flake - refactor whitespace, comments
-rw-r--r--flake.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix
index 51ffc0f..e02796b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -36,12 +36,7 @@
         });
     in
     {
-      # Build our package using `buildPythonPackage
-      packages.x86_64-linux.default =
-        # Pass attributes to buildPythonPackage.
-        # Here is a good spot to add on any missing or custom attributes.
-        pkg;
-    } //  {
-    pythonPath = "${python.pkgs.makePythonPath attrs.dependencies}:${pkg}/${python.sitePackages}";
+      packages.x86_64-linux.default = pkg;
+      pythonPath = "${python.pkgs.makePythonPath attrs.dependencies}:${pkg}/${python.sitePackages}";
   };
 }