python3Packages.setuptoolsBuildHook: correct name

Make `name` attribute into the same format as every other hook (modulo
.sh).

Nothing else in nixpkgs appears to refer to the old name.
This commit is contained in:
Thomas Watson 2024-01-21 11:34:45 -06:00
parent 26ccdea3d7
commit d521f03303
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ in {
setuptoolsBuildHook = callPackage ({ makePythonHook, setuptools, wheel }:
makePythonHook {
name = "setuptools-setup-hook";
name = "setuptools-build-hook";
propagatedBuildInputs = [ setuptools wheel ];
substitutions = {
inherit pythonInterpreter setuppy;