Unverified Commit a45b7ea9 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #268694 from natsukium/pdm/update

pdm: 2.10.1 -> 2.10.3
parents 92053c3d 88a737ad
Loading
Loading
Loading
Loading
+2 −12
Original line number Diff line number Diff line
@@ -32,25 +32,15 @@ in
with python.pkgs;
buildPythonApplication rec {
  pname = "pdm";
  version = "2.10.1";
  version = "2.10.3";
  format = "pyproject";
  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-0WZTHGWfxJBZM1RlRN0uFs9kjCum2JjIISatakIReoE=";
    hash = "sha256-Rtr8ik/iaMRkeYduUsaWf3qao4Xh5XTmQkhnCjezWP8=";
  };

  patches = [
    # https://github.com/NixOS/nixpkgs/issues/265883
    # https://github.com/pdm-project/pdm/pull/2379
    (fetchpatch {
      name = "fix-template-permission.patch";
      url = "https://github.com/pdm-project/pdm/commit/f0efdcefe589bc58c28ccf6ce2d23cad9a81dccc.patch";
      hash = "sha256-NnHDSz2N63JzSzh2t9a5f/QQWM6Hyd5Cn5JY2zem6Ac=";
    })
  ];

  nativeBuildInputs = [
    pdm-backend
  ];