signal-export: use built-system key

the built-system key is specific to python packages and therefore preferable over the more general nativeBuildInputs

see https://github.com/NixOS/nixpkgs/pull/353086#discussion_r1832644539
This commit is contained in:
belamu 2025-01-01 20:09:59 +01:00
parent 10f6d55b84
commit 1bae375e38
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-QHTix56hdujxWr+pjCg6zu15tCB7YoDSzmNpWwWOHN0=";
};
nativeBuildInputs = with python3.pkgs; [
build-system = with python3.pkgs; [
pdm-backend
];

View File

@ -19,7 +19,7 @@ buildPythonPackage {
hash = "sha256-4w/1jWTdQ+Gezt3RARahonrR2YiMxCRcdfK9qbA4Tnc=";
};
nativeBuildInputs = [
build-system = [
setuptools
];