diff options
| -rw-r--r-- | flake.nix | 9 |
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}"; }; } |
