diff --git a/templates/python-project/flake-module.nix b/templates/python-project/flake-module.nix index 38813ea7..1e85e607 100644 --- a/templates/python-project/flake-module.nix +++ b/templates/python-project/flake-module.nix @@ -1,6 +1,6 @@ { perSystem = {pkgs, ...}: let - pyproject = builtins.fromTOML (builtins.readFile ./src/pyproject.toml); + pyproject = builtins.fromTOML (builtins.readFile ./pyproject.toml); name = pyproject.project.name; package = pkgs.callPackage ./default.nix {}; in {