From fca98321e9bce9582d74af7db8d8141349966810 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sat, 19 Nov 2022 19:49:22 +0100 Subject: [PATCH] Correct the build dependency for pytoolconfig --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1381f77..3632149 100644 --- a/flake.nix +++ b/flake.nix @@ -57,7 +57,7 @@ pytoolconfig = super.pytoolconfig.overridePythonAttrs ( old: { - buildInputs = (old.buildInputs or [ ]) ++ [ super.pdm ]; + buildInputs = (old.buildInputs or [ ]) ++ [ super.pdm-pep517 ]; } ); });