From 178df2eccb43bf340ac28742a30a072b293845f1 Mon Sep 17 00:00:00 2001 From: DavHau Date: Fri, 21 Jul 2023 01:10:29 +0200 Subject: [PATCH] templates/python: fix flake-module.nix --- templates/python-project/flake-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {