Commit 1bae375e authored by belamu's avatar belamu
Browse files

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
parent 10f6d55b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ python3.pkgs.buildPythonApplication rec {
    hash = "sha256-QHTix56hdujxWr+pjCg6zu15tCB7YoDSzmNpWwWOHN0=";
  };

  nativeBuildInputs = with python3.pkgs; [
  build-system = with python3.pkgs; [
    pdm-backend
  ];

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ buildPythonPackage {
    hash = "sha256-4w/1jWTdQ+Gezt3RARahonrR2YiMxCRcdfK9qbA4Tnc=";
  };

  nativeBuildInputs = [
  build-system = [
    setuptools
  ];